From 7654d2e12bf011705dd94b2b79c063a39e9817e5 Mon Sep 17 00:00:00 2001 From: Jonathan Rosser Date: Mon, 24 Jun 2019 14:55:17 +0100 Subject: [PATCH] Fix log output format string Wrong kind of brackets caused a crash when this log output was created. Change-Id: I1be586fcd72060a5bf47d5ae7e99fac92855ff57 --- octavia_tempest_plugin/tests/validators.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/octavia_tempest_plugin/tests/validators.py b/octavia_tempest_plugin/tests/validators.py index 2dc1d640..773fcc49 100644 --- a/octavia_tempest_plugin/tests/validators.py +++ b/octavia_tempest_plugin/tests/validators.py @@ -75,7 +75,7 @@ def validate_URL_response(URL, expected_status_code=200, return except requests.exceptions.Timeout: # Don't sleep as we have already waited the interval. - LOG.info('Request for () timed out. Retrying.'.format(URL)) + LOG.info('Request for {} timed out. Retrying.'.format(URL)) except (exceptions.InvalidHttpSuccessCode, exceptions.InvalidHTTPResponseBody, requests.exceptions.SSLError):