Skip to content

Commit

Permalink
chore(call): increase queue size stuck limit
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlougheed committed Jun 11, 2024
1 parent c8ce8a0 commit 9812562
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions strkit/call/call_sample.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@


# TODO: Parameterize
LOG_PROGRESS_INTERVAL: int = 120 # seconds
LOG_PROGRESS_INTERVAL: int = 10 # seconds
PROFILE_LOCUS_CALLS: bool = False

NUMERAL_CONTIG_PATTERN = re.compile(r"^(\d{1,2}|X|Y)$")
Expand Down Expand Up @@ -233,7 +233,7 @@ def _log():
else:
last_qsize_n_stuck = 0

if last_qsize_n_stuck >= 20:
if last_qsize_n_stuck >= 30:
# zombie worker or stuck, exit
lg.error(f"Terminating progress worker; seems to be stuck with {qsize=}")
return
Expand Down

0 comments on commit 9812562

Please sign in to comment.