Skip to content

Commit c1d6fd9

Browse files
committed
more retries
1 parent fdf6a16 commit c1d6fd9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/backend/src/lib/clickhouse.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export const getQueryTimingStats = async (client: ClickHouseClient, queryId: str
7373
}>();
7474
};
7575

76-
const retryDelaysMs = [75, 150, 300];
76+
const retryDelaysMs = [75, 150, 300, 600, 1200];
7777
for (let attempt = 0; attempt <= retryDelaysMs.length; attempt += 1) {
7878
const stats = await queryProfile();
7979
if (stats.data.length === 1) {

0 commit comments

Comments
 (0)