diff options
author | 2022-08-12 23:49:32 +0200 | |
---|---|---|
committer | 2022-08-12 23:49:32 +0200 | |
commit | 640a2e29b315854e5063dcea96c804a6081f652d (patch) | |
tree | fb84484d575671bb55654ffe57d4923b5ec0ed15 /pydis_site | |
parent | Merge pull request #742 from python-discord/github-artifacts (diff) | |
parent | Increase Timeout For Artifact Download (diff) |
Merge pull request #762 from python-discord/raise-static-builds
Static Builds Small Improvements
Diffstat (limited to 'pydis_site')
-rw-r--r-- | pydis_site/apps/api/github_utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pydis_site/apps/api/github_utils.py b/pydis_site/apps/api/github_utils.py index ad24165d..5d7bcdc3 100644 --- a/pydis_site/apps/api/github_utils.py +++ b/pydis_site/apps/api/github_utils.py @@ -9,7 +9,7 @@ import jwt from pydis_site import settings -MAX_RUN_TIME = datetime.timedelta(minutes=3) +MAX_RUN_TIME = datetime.timedelta(minutes=10) """The maximum time allowed before an action is declared timed out.""" ISO_FORMAT_STRING = "%Y-%m-%dT%H:%M:%SZ" """The datetime string format GitHub uses.""" |