| Index: infra/libs/buildbot/master.py
|
| diff --git a/infra/libs/buildbot/master.py b/infra/libs/buildbot/master.py
|
| index fa2ce822b2a86698ff65673d6044b94c9c462ac6..ea5040023f8d793dd19279fd44af4e1e3ada04fc 100644
|
| --- a/infra/libs/buildbot/master.py
|
| +++ b/infra/libs/buildbot/master.py
|
| @@ -141,7 +141,7 @@ def get_accepting_builds(directory, timeout=30):
|
| return res.json().get('accepting_builds')
|
| except simplejson.scanner.JSONDecodeError:
|
| pass
|
| - except requests.exceptions.Timeout:
|
| + except (requests.exceptions.Timeout, requests.exceptions.ConnectionError):
|
| pass
|
| return None
|
|
|
|
|