Skip to content

Commit

Permalink
fix limit of api key
Browse files Browse the repository at this point in the history
  • Loading branch information
dtmkeng committed Feb 13, 2024
1 parent e1b304e commit e45b98a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helpers/dune.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export async function queryDune(queryId: string, query_parameters = {}) {
throw new Error("Still running")
},
{
retries: API_KEYS.length + 1,
retries: 5 * API_KEYS.length + 3,
maxTimeout: 1000 * 60 * 5
}
);
Expand Down

0 comments on commit e45b98a

Please sign in to comment.