From: Adam C. Emerson Date: Mon, 31 Mar 2025 19:32:41 +0000 (-0400) Subject: test/rgw_multi: Fix unbound variable in log message X-Git-Tag: v20.3.0~169^2~16 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=b0b18e62e2ef3e00ec527d0e3aa12712b6d5c0ff;p=ceph.git test/rgw_multi: Fix unbound variable in log message Signed-off-by: Adam C. Emerson --- diff --git a/src/test/rgw/rgw_multi/tests.py b/src/test/rgw/rgw_multi/tests.py index 32bae6099c1d6..e08ad319feb5c 100644 --- a/src/test/rgw/rgw_multi/tests.py +++ b/src/test/rgw/rgw_multi/tests.py @@ -526,7 +526,7 @@ def check_all_buckets_dont_exist(zone_conn, buckets): except: continue - log.critical('zone %s contains bucket %s', zone.zone, b) + log.critical('zone %s contains bucket %s', zone_conn.zone, b) return False return True