| Index: dashboard/dashboard/services/gitiles_service.py
|
| diff --git a/dashboard/dashboard/services/gitiles_service.py b/dashboard/dashboard/services/gitiles_service.py
|
| index 2c5485b4f5b260155f8fb71df8177b1fe8f3ac31..d5a9da8525499e17b82ec782697017c9adfe4873 100644
|
| --- a/dashboard/dashboard/services/gitiles_service.py
|
| +++ b/dashboard/dashboard/services/gitiles_service.py
|
| @@ -100,7 +100,7 @@ def _Request(url):
|
|
|
| def _RequestAndProcessHttpErrors(url):
|
| """Requests a URL, converting HTTP errors to Python exceptions."""
|
| - response = urlfetch.fetch(url)
|
| + response = urlfetch.fetch(url, deadline=10)
|
|
|
| if response.status_code == 404:
|
| raise NotFoundError('Server returned HTTP code %d for %s' %
|
|
|