From c8de76c7fdf1d7fc34066a27c9e974177d1e865a Mon Sep 17 00:00:00 2001 From: Tim Burke Date: Thu, 8 Apr 2021 17:19:13 -0700 Subject: [PATCH] swift-account-audit: Log the bad status Change-Id: Ib28d1948a571acf31926df82dd8c24910c227053 --- bin/swift-account-audit | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/bin/swift-account-audit b/bin/swift-account-audit index a5a50dc1f9..994492bb49 100755 --- a/bin/swift-account-audit +++ b/bin/swift-account-audit @@ -100,8 +100,9 @@ class Auditor(object): if resp.status // 100 != 2: self.object_not_found += 1 consistent = False - print(' Bad status GETting object "%s" on %s/%s' - % (path, node['ip'], node['device'])) + print(' Bad status %s GETting object "%s" on %s/%s' + % (resp.status, path, + node['ip'], node['device'])) continue if resp.getheader('ETag').strip('"') != calc_hash: self.object_checksum_mismatch += 1 @@ -116,8 +117,9 @@ class Auditor(object): if resp.status // 100 != 2: self.object_not_found += 1 consistent = False - print(' Bad status HEADing object "%s" on %s/%s' - % (path, node['ip'], node['device'])) + print(' Bad status %s HEADing object "%s" on %s/%s' + % (resp.status, path, + node['ip'], node['device'])) continue override_etag = resp.getheader(