Skip to content

Commit

Permalink
Fix a pylint error
Browse files Browse the repository at this point in the history
  • Loading branch information
yijxie committed Sep 7, 2019
1 parent dad5baa commit 8e7e1c1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ async def start(self):
while self._running:
try:
claimed_ownership_list = await ownership_manager.claim_ownership()
except Exception as err:
except Exception as err: # pylint:disable=broad-except
log.warning("An exception (%r) occurred during balancing and claiming ownership for eventhub %r "
"consumer group %r. Retrying after %r seconds",
err, self._eventhub_name, self._consumer_group_name, self._polling_interval)
Expand Down

0 comments on commit 8e7e1c1

Please sign in to comment.