diff --git a/APIReference/Index.ts b/APIReference/Index.ts index 501f44d83c..b03b6da752 100755 --- a/APIReference/Index.ts +++ b/APIReference/Index.ts @@ -21,7 +21,7 @@ const init: PromiseVoidFunction = async (): Promise => { checkClickhouseStatus: false, checkPostgresStatus: false, checkRedisStatus: false, - retryCount: 3 + retryCount: 3, }); }; diff --git a/App/Index.ts b/App/Index.ts index 52d5773c83..97ebf14346 100755 --- a/App/Index.ts +++ b/App/Index.ts @@ -38,7 +38,7 @@ const init: PromiseVoidFunction = async (): Promise => { checkClickhouseStatus: false, checkPostgresStatus: false, checkRedisStatus: true, - retryCount: 3 + retryCount: 3, }); }; @@ -49,7 +49,7 @@ const init: PromiseVoidFunction = async (): Promise => { checkClickhouseStatus: true, checkPostgresStatus: false, checkRedisStatus: false, - retryCount: 3 + retryCount: 3, }); }; @@ -59,7 +59,7 @@ const init: PromiseVoidFunction = async (): Promise => { checkClickhouseStatus: false, checkPostgresStatus: true, checkRedisStatus: false, - retryCount: 3 + retryCount: 3, }); }; diff --git a/Common/Server/Infrastructure/Status.ts b/Common/Server/Infrastructure/Status.ts index 899a181ff9..089ccfe6b1 100644 --- a/Common/Server/Infrastructure/Status.ts +++ b/Common/Server/Infrastructure/Status.ts @@ -42,7 +42,6 @@ export default class InfrastructureStatus { } } - public static async checkStatusWithRetry(data: { retryCount: number; checkRedisStatus: boolean; diff --git a/Docs/Index.ts b/Docs/Index.ts index 5315f65fa9..3a4538a4df 100755 --- a/Docs/Index.ts +++ b/Docs/Index.ts @@ -21,7 +21,7 @@ const init: PromiseVoidFunction = async (): Promise => { checkClickhouseStatus: false, checkPostgresStatus: false, checkRedisStatus: false, - retryCount: 3 + retryCount: 3, }); }; diff --git a/FluentIngest/Index.ts b/FluentIngest/Index.ts index b847d9e26b..156c181e03 100644 --- a/FluentIngest/Index.ts +++ b/FluentIngest/Index.ts @@ -23,7 +23,7 @@ const init: PromiseVoidFunction = async (): Promise => { checkClickhouseStatus: true, checkPostgresStatus: true, checkRedisStatus: true, - retryCount: 3 + retryCount: 3, }); }; diff --git a/HelmChart/Public/oneuptime/values.yaml b/HelmChart/Public/oneuptime/values.yaml index cac521ace9..5b5826ef36 100644 --- a/HelmChart/Public/oneuptime/values.yaml +++ b/HelmChart/Public/oneuptime/values.yaml @@ -394,11 +394,11 @@ startupProbe: # Startup probe configuration livenessProbe: # Liveness probe configuration enabled: true periodSeconds: 10 - timeoutSeconds: 30 + timeoutSeconds: 120 initialDelaySeconds: 10 readinessProbe: # Readiness probe configuration enabled: true periodSeconds: 10 initialDelaySeconds: 10 - timeoutSeconds: 30 + timeoutSeconds: 120 diff --git a/Home/Index.ts b/Home/Index.ts index 7bda128935..d7f6543f37 100644 --- a/Home/Index.ts +++ b/Home/Index.ts @@ -21,7 +21,7 @@ const init: PromiseVoidFunction = async (): Promise => { checkClickhouseStatus: false, checkPostgresStatus: false, checkRedisStatus: false, - retryCount: 3 + retryCount: 3, }); }; diff --git a/IncomingRequestIngest/Index.ts b/IncomingRequestIngest/Index.ts index ea2d0a7be5..dc56787e24 100644 --- a/IncomingRequestIngest/Index.ts +++ b/IncomingRequestIngest/Index.ts @@ -24,7 +24,7 @@ const init: PromiseVoidFunction = async (): Promise => { checkClickhouseStatus: true, checkPostgresStatus: true, checkRedisStatus: true, - retryCount: 3 + retryCount: 3, }); }; diff --git a/Nginx/Index.ts b/Nginx/Index.ts index 5cbb9887a7..d03a9fd248 100644 --- a/Nginx/Index.ts +++ b/Nginx/Index.ts @@ -17,7 +17,7 @@ const init: PromiseVoidFunction = async (): Promise => { checkClickhouseStatus: false, checkPostgresStatus: true, checkRedisStatus: false, - retryCount: 3 + retryCount: 3, }); }; diff --git a/OpenTelemetryIngest/Index.ts b/OpenTelemetryIngest/Index.ts index d4eeb56726..9f3925e2bc 100644 --- a/OpenTelemetryIngest/Index.ts +++ b/OpenTelemetryIngest/Index.ts @@ -24,7 +24,7 @@ const init: PromiseVoidFunction = async (): Promise => { checkClickhouseStatus: true, checkPostgresStatus: true, checkRedisStatus: true, - retryCount: 3 + retryCount: 3, }); }; diff --git a/ProbeIngest/Index.ts b/ProbeIngest/Index.ts index 4a17cbbbec..af3028f86b 100644 --- a/ProbeIngest/Index.ts +++ b/ProbeIngest/Index.ts @@ -31,7 +31,7 @@ const init: PromiseVoidFunction = async (): Promise => { checkClickhouseStatus: true, checkPostgresStatus: true, checkRedisStatus: true, - retryCount: 3 + retryCount: 3, }); }; diff --git a/Worker/Index.ts b/Worker/Index.ts index d4224b9cb4..210fec7938 100644 --- a/Worker/Index.ts +++ b/Worker/Index.ts @@ -29,7 +29,7 @@ const init: PromiseVoidFunction = async (): Promise => { checkClickhouseStatus: true, checkPostgresStatus: true, checkRedisStatus: true, - retryCount: 3 + retryCount: 3, }); }; diff --git a/Workflow/Index.ts b/Workflow/Index.ts index b7f50f8921..53278dfa47 100644 --- a/Workflow/Index.ts +++ b/Workflow/Index.ts @@ -27,7 +27,7 @@ const init: PromiseVoidFunction = async (): Promise => { checkClickhouseStatus: true, checkPostgresStatus: true, checkRedisStatus: true, - retryCount: 3 + retryCount: 3, }); };