From: Zack Cerza Date: Fri, 22 Nov 2013 23:03:29 +0000 (-0600) Subject: Also catch httplib2.ServerNotFoundError X-Git-Tag: 1.1.0~1766 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=deec86c70305fc1b1694d9dc50a95016210c365c;p=teuthology.git Also catch httplib2.ServerNotFoundError Signed-off-by: Zack Cerza --- diff --git a/teuthology/report.py b/teuthology/report.py index 1d282ec1b0..21bcf5b2bd 100644 --- a/teuthology/report.py +++ b/teuthology/report.py @@ -393,6 +393,6 @@ def try_push_job_info(job_config, extra_info=None): try: log.info("Pushing job info to %s", config.results_server) push_job_info(run_name, job_id, job_info) - except (RequestFailedError, socket.error): + except (RequestFailedError, socket.error, httplib2.ServerNotFoundError): log.exception("Could not report results to %s" % config.results_server)