Chromium Code Reviews| Index: commit-queue/verification/try_job_on_rietveld.py |
| =================================================================== |
| --- commit-queue/verification/try_job_on_rietveld.py (revision 233311) |
| +++ commit-queue/verification/try_job_on_rietveld.py (working copy) |
| @@ -747,6 +747,12 @@ |
| return False |
| else: |
| raise |
| + except IOError as e: |
| + # Temporary AppEngine hiccup. Just log it and return failure. |
| + if e.errno == 'socket error': |
| + logging.warning(str(e)) |
| + return False |
| + raise |
| except socket.error as e: |
|
M-A Ruel
2013/11/07 19:36:05
I think socket.error inherits from IOError, so thi
Paweł Hajdan Jr.
2013/11/07 21:02:16
In my tests it didn't behave that way. I think som
|
| # Temporary AppEngine hiccup. Just log it and return failure. |
| if e.errno == errno.ECONNRESET: |