swift-account-audit: Log the bad status

Change-Id: Ib28d1948a571acf31926df82dd8c24910c227053
This commit is contained in:
Tim Burke 2021-04-08 17:19:13 -07:00
parent d9a6fe4362
commit c8de76c7fd
1 changed files with 6 additions and 4 deletions

View File

@ -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(