Skip to content

Commit

Permalink
fix: remove any
Browse files Browse the repository at this point in the history
  • Loading branch information
alexey-yarmosh committed Apr 12, 2024
1 parent 8c93616 commit 2a9fde0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export const waitProbeToConnect = async () => {
for (;;) {
try {
responses = await Promise.all(_.times(processes * 2, (() => got<any>('http://localhost:80/v1/probes', { responseType: 'json' }))));
} catch (err: any) {
} catch (err) {
logger.info((err as RequestError).code);
await setTimeout(1000);
continue;
Expand Down

0 comments on commit 2a9fde0

Please sign in to comment.