diff --git a/combo/data/models.py b/combo/data/models.py index cd1fc976..9a4414a7 100644 --- a/combo/data/models.py +++ b/combo/data/models.py @@ -1940,7 +1940,9 @@ class FeedCell(CellBase): if not feed_content: feed_response = None try: - feed_response = requests.get(utils.get_templated_url(self.url)) + feed_response = requests.get( + utils.get_templated_url(self.url), timeout=settings.REQUESTS_TIMEOUT + ) feed_response.raise_for_status() except (requests.exceptions.RequestException): pass