From deec86c70305fc1b1694d9dc50a95016210c365c Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Fri, 22 Nov 2013 17:03:29 -0600 Subject: [PATCH] Also catch httplib2.ServerNotFoundError Signed-off-by: Zack Cerza --- teuthology/report.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.5