Skip to content

Commit

Permalink
impr(UTAPI-103): Remove undeclared variable from log message
Browse files Browse the repository at this point in the history
  • Loading branch information
tmacro committed Jun 12, 2024
1 parent f5262b7 commit 69b94c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/reindex/s3_bucketd.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ def _sum_objects(self, bucket, listing, only_latest_when_locked = False):
total_size += size

except InvalidListing:
_log.error('Invalid contents in listing. bucket:%s status_code:%s'%(bucket.name, status_code))
_log.error('Invalid contents in listing. bucket:%s'%bucket.name)
raise InvalidListing(bucket.name)
return count, total_size

Expand Down

0 comments on commit 69b94c5

Please sign in to comment.