Skip to content

Commit

Permalink
chore(call): increase # repeats before stuck for progress worker
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlougheed committed Jun 7, 2024
1 parent ea29000 commit 702028b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion strkit/call/call_sample.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def _log():
_log()
if last_qsize == locus_queue.qsize(): # stuck
last_qsize_n_stuck += 1
if last_qsize_n_stuck >= 3:
if last_qsize_n_stuck >= 20:
# zombie worker or stuck, exit
lg.error(f"Terminating progress worker; seems to be stuck with qsize={qsize}")
return
Expand Down

0 comments on commit 702028b

Please sign in to comment.