We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90368c7 commit 2d9b3d0Copy full SHA for 2d9b3d0
src/constants.ts
@@ -1,4 +1,6 @@
1
-export const WORKFLOW_FETCH_TIMEOUT_MS = 60 * 1000;
2
-export const WORKFLOW_JOB_STEPS_RETRY_MS = 5000;
3
-export const WORKFLOW_JOB_STEPS_SERVER_ERROR_RETRY_MAX = 3;
4
-export const WORKFLOW_JOB_STEPS_SERVER_ERROR_RETRY_MS = 500;
+/* eslint-disable @typescript-eslint/no-inferrable-types */
+
+export const WORKFLOW_FETCH_TIMEOUT_MS: number = 60 * 1000;
+export const WORKFLOW_JOB_STEPS_RETRY_MS: number = 5000;
5
+export const WORKFLOW_JOB_STEPS_SERVER_ERROR_RETRY_MAX: number = 3;
6
+export const WORKFLOW_JOB_STEPS_SERVER_ERROR_RETRY_MS: number = 500;
0 commit comments