Skip to content

Commit 29e19c1

Browse files
author
Ruben Gomez
committed
Increased timeout for service readiness checks from 120 seconds to 240 seconds in main.js
1 parent 36b3406 commit 29e19c1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

polaris/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ function showSetupWizard() {
166166
splashWindow.updateProgress('Waiting for services to be ready...', 40);
167167
// Poll until all services are healthy or timeout
168168
const startTime = Date.now();
169-
const timeout = 120000; // 120 seconds timeout
169+
const timeout = 240000; // 240 seconds timeout
170170
let servicesHealthy = false;
171171
while (Date.now() - startTime < timeout) {
172172
if (ServiceManager.isAllHealthy()) {
@@ -370,7 +370,7 @@ async function appInitialization() {
370370

371371
// Poll until all services are healthy or timeout
372372
const startTime = Date.now();
373-
const timeout = 120000; // 120 seconds timeout
373+
const timeout = 240000; // 240 seconds timeout
374374
let servicesHealthy = false;
375375

376376
while (Date.now() - startTime < timeout) {

0 commit comments

Comments
 (0)