diff options
author | 2021-09-04 10:00:27 +0100 | |
---|---|---|
committer | 2021-09-04 10:00:27 +0100 | |
commit | f5efff5c4d0414f609430b958c9b46c51253f052 (patch) | |
tree | 49895c3c85a2c8cec2d033b51bd0028c548a4e22 /pydis_site/apps/home | |
parent | Explicitly set gunicorn config argument (diff) | |
parent | Merge pull request #579 from python-discord/jb3/update-k8s-path (diff) |
Merge branch 'main' into jb3/django-prometheus
Diffstat (limited to 'pydis_site/apps/home')
-rw-r--r-- | pydis_site/apps/home/views/home.py | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/pydis_site/apps/home/views/home.py b/pydis_site/apps/home/views/home.py index 0f26cef3..bbb4b815 100644 --- a/pydis_site/apps/home/views/home.py +++ b/pydis_site/apps/home/views/home.py @@ -9,7 +9,7 @@ from django.utils import timezone from django.views import View from pydis_site.apps.home.models import RepositoryMetadata -from pydis_site.constants import GITHUB_TOKEN +from pydis_site.constants import GITHUB_TOKEN, TIMEOUT_PERIOD log = logging.getLogger(__name__) @@ -51,9 +51,16 @@ class HomeView(View): If we're unable to get that info for any reason, return an empty dict. """ repo_dict = {} - - # Fetch the data from the GitHub API - api_data: List[dict] = requests.get(self.github_api, headers=self.headers).json() + try: + # Fetch the data from the GitHub API + api_data: List[dict] = requests.get( + self.github_api, + headers=self.headers, + timeout=TIMEOUT_PERIOD + ).json() + except requests.exceptions.Timeout: + log.error("Request to fetch GitHub repository metadata for timed out!") + return repo_dict # Process the API data into our dict for repo in api_data: |