Skip to content

Commit

Permalink
Longer task run time (#605)
Browse files Browse the repository at this point in the history
  • Loading branch information
kazet authored Nov 2, 2023
1 parent b798143 commit 0aafeba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion artemis/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ class PublicSuffixes:
class Limits:
TASK_TIMEOUT_SECONDS: Annotated[
int, "What is the maximum task run time (after which it will get killed)."
] = get_config("TASK_TIMEOUT_SECONDS", default=4 * 3600, cast=int)
] = get_config("TASK_TIMEOUT_SECONDS", default=6 * 3600, cast=int)

REQUEST_TIMEOUT_SECONDS: Annotated[
int,
Expand Down

0 comments on commit 0aafeba

Please sign in to comment.