Skip to content

Commit

Permalink
bugfix(UTAPI-109): Remove undefined variable reference
Browse files Browse the repository at this point in the history
  • Loading branch information
tmacro committed Oct 9, 2024
1 parent 268c8b5 commit 4071651
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 @@ -258,7 +258,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 status_code:%s'%(bucket.name))
raise InvalidListing(bucket.name)
return count, total_size

Expand Down

0 comments on commit 4071651

Please sign in to comment.