From 189956ac329f54e93a63662d35d32e3f00c24812 Mon Sep 17 00:00:00 2001 From: Andre Merzky Date: Fri, 13 Dec 2024 09:59:49 +0100 Subject: [PATCH] generously increase proxy timeout --- src/radical/pilot/proxy.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/radical/pilot/proxy.py b/src/radical/pilot/proxy.py index b48502233..e3f31019a 100644 --- a/src/radical/pilot/proxy.py +++ b/src/radical/pilot/proxy.py @@ -8,10 +8,10 @@ import radical.utils as ru -_TIMEOUT = 300 # time to keep the bridge alive -_LINGER_TIMEOUT = 250 # ms to linger after close -_HIGH_WATER_MARK = 0 # number of messages to buffer before dropping - # 0: infinite +_TIMEOUT = 24 * 3600 # time to keep the bridge alive for a day +_LINGER_TIMEOUT = 250 # ms to linger after close +_HIGH_WATER_MARK = 0 # number of messages to buffer before dropping + # 0: infinite # ------------------------------------------------------------------------------