Skip to content

Commit

Permalink
Merge pull request #2985 from radical-cybertools/fix/raptor_hb_time
Browse files Browse the repository at this point in the history
increase raptor's heartbeat time
  • Loading branch information
AymenFJA authored Jul 24, 2023
2 parents 44fde6b + c545c85 commit f41b5d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/radical/pilot/raptor/master.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ def __init__(self, cfg=None):
self._term = mt.Event() # termination signal
self._thread = None # run loop

self._hb_freq = 10 # check worker heartbetas every n seconds
self._hb_timeout = 15 # consider worker dead after 15 seconds
self._hb_freq = 1000 # check worker heartbetas every n seconds
self._hb_timeout = 150 # consider worker dead after 150 seconds

cfg = self._get_config(cfg)
self._session = Session(cfg=cfg, uid=cfg.sid, _primary=False)
Expand Down

0 comments on commit f41b5d6

Please sign in to comment.