Skip to content

Commit

Permalink
ci: fix generate ec2 types
Browse files Browse the repository at this point in the history
  • Loading branch information
hoonoh committed Dec 8, 2020
1 parent 60f7967 commit 3a204bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/generate-ec2-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ const sortInstances = (i1: string, i2: string): number => {
const getEc2Types = async (): Promise<string> => {
let prices;
try {
prices = await getGlobalSpotPrices({});
prices = await getGlobalSpotPrices({ limit: Number.POSITIVE_INFINITY });
} catch (error) {
console.log(`getGlobalSpotPrices error: ${error}`);
process.exit(1);
Expand Down

0 comments on commit 3a204bf

Please sign in to comment.