Skip to content

Commit

Permalink
chore: increase default stuck call timeout (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
BobTheBuidler authored Aug 1, 2023
1 parent b5de860 commit ae846ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dank_mids/ENVIRONMENT_VARIABLES.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
COLLECT_STATS = _envs.create_env("COLLECT_STATS", bool, default=EXPORT_STATS, verbose=not EXPORT_STATS)

# You probably don't need to use this unless you know you need to
STUCK_CALL_TIMEOUT = _envs.create_env("STUCK_CALL_TIMEOUT", int, default=60)
STUCK_CALL_TIMEOUT = _envs.create_env("STUCK_CALL_TIMEOUT", int, default=60*60*2)

# Method-specific Semaphores
method_semaphores = {
Expand Down

0 comments on commit ae846ed

Please sign in to comment.