Skip to content

Commit

Permalink
Merge pull request #499 from kytos-ng/chore/pacing_log_message
Browse files Browse the repository at this point in the history
chore: Refactors log message `Limited reached:` to `Limit reached:`
  • Loading branch information
Ktmi authored Sep 10, 2024
2 parents 38fe606 + 45c1588 commit 9241579
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 9241579

Please sign in to comment.