Skip to content

Commit

Permalink
Fix log message "Limited reached:" to "Limit reached:"
Browse files Browse the repository at this point in the history
  • Loading branch information
Ktmi committed Sep 9, 2024
1 parent 38fe606 commit 45c1588
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kytos/core/pacing.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ def hit(self, action_name: str, *keys):
*identifiers
)
sleep_time = window_reset - time.time()
LOG.info(f'Limited reached: {identifiers}')
LOG.info(f'Limit reached: {identifiers}')
if sleep_time <= 0:
continue

Expand Down

0 comments on commit 45c1588

Please sign in to comment.