Skip to content

Commit

Permalink
Merge pull request #3286 from radical-cybertools/fix/proxy_heartbeat
Browse files Browse the repository at this point in the history
generously increase proxy timeout
  • Loading branch information
andre-merzky authored Dec 13, 2024
2 parents c23c288 + ce6ef6c commit 2f82389
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/radical/pilot/proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -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


# ------------------------------------------------------------------------------
Expand Down

0 comments on commit 2f82389

Please sign in to comment.