Skip to content

Commit 93d3cdc

Browse files
change timeout for reconcoliation
1 parent 100f86d commit 93d3cdc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1624,7 +1624,7 @@ def _run_reconciliation():
16241624
needs_tunnel_config_update = False
16251625
state_changed_locally = False
16261626

1627-
max_total_time = 240
1627+
max_total_time = 480
16281628
reconciliation_start = time.time()
16291629

16301630
app.reconciliation_info = {
@@ -1760,7 +1760,7 @@ def watchdog_timer():
17601760
except Exception as e_cont:
17611761
logging.error(f"[Reconcile] Error processing container {c.id[:12] if c and c.id else 'N/A'}: {e_cont}")
17621762
continue
1763-
if USE_EXTERNAL_CLOUDFLARED and i + batch_size < container_count: time.sleep(0.2)
1763+
if USE_EXTERNAL_CLOUDFLARED and i + batch_size < container_count: time.sleep(0.05)
17641764

17651765
logging.info(f"[Reconcile] Found {len(running_labeled_hostnames_details)} running hostnames with DockFlare labels.")
17661766
except Exception as e_phase1:

0 commit comments

Comments
 (0)