Skip to content

Commit

Permalink
fix: use appexchange since it is updated with R2
Browse files Browse the repository at this point in the history
  • Loading branch information
shetzel committed Jan 19, 2024
1 parent 5d4299b commit b665587
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/registry/coverage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ let apiVer: number;

export const getCurrentApiVersion = async (): Promise<number> => {
if (apiVer === undefined) {
const apiVersionsUrl = 'https://org62.my.salesforce-sites.com/services/data';
const apiVersionsUrl = 'https://appexchange.salesforce.com/services/data';
const lastVersionEntry = (await got(getProxiedOptions(apiVersionsUrl)).json<ApiVersion[]>()).pop() as ApiVersion;
apiVer = +lastVersionEntry.version;
}
Expand Down

2 comments on commit b665587

@svc-cli-bot
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Benchmark

Benchmark suite Current: b665587 Previous: 5d4299b Ratio
eda-componentSetCreate-linux 243 ms 247 ms 0.98
eda-sourceToMdapi-linux 2073 ms 2129 ms 0.97
eda-sourceToZip-linux 1635 ms 1707 ms 0.96
eda-mdapiToSource-linux 3094 ms 3011 ms 1.03
lotsOfClasses-componentSetCreate-linux 377 ms 396 ms 0.95
lotsOfClasses-sourceToMdapi-linux 3508 ms 3562 ms 0.98
lotsOfClasses-sourceToZip-linux 2780 ms 2922 ms 0.95
lotsOfClasses-mdapiToSource-linux 3449 ms 3491 ms 0.99
lotsOfClassesOneDir-componentSetCreate-linux 647 ms 647 ms 1
lotsOfClassesOneDir-sourceToMdapi-linux 6219 ms 6399 ms 0.97
lotsOfClassesOneDir-sourceToZip-linux 5098 ms 5338 ms 0.96
lotsOfClassesOneDir-mdapiToSource-linux 6093 ms 6221 ms 0.98

This comment was automatically generated by workflow using github-action-benchmark.

@svc-cli-bot
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Benchmark

Benchmark suite Current: b665587 Previous: 5d4299b Ratio
eda-componentSetCreate-win32 469 ms 412 ms 1.14
eda-sourceToMdapi-win32 3717 ms 3532 ms 1.05
eda-sourceToZip-win32 2795 ms 2632 ms 1.06
eda-mdapiToSource-win32 6196 ms 5754 ms 1.08
lotsOfClasses-componentSetCreate-win32 922 ms 862 ms 1.07
lotsOfClasses-sourceToMdapi-win32 8065 ms 7648 ms 1.05
lotsOfClasses-sourceToZip-win32 4812 ms 4721 ms 1.02
lotsOfClasses-mdapiToSource-win32 7913 ms 7543 ms 1.05
lotsOfClassesOneDir-componentSetCreate-win32 1637 ms 1506 ms 1.09
lotsOfClassesOneDir-sourceToMdapi-win32 14711 ms 14256 ms 1.03
lotsOfClassesOneDir-sourceToZip-win32 8693 ms 9034 ms 0.96
lotsOfClassesOneDir-mdapiToSource-win32 13123 ms 14080 ms 0.93

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.