From 507c7fb58d99efc4606772426e6844b8453ef620 Mon Sep 17 00:00:00 2001 From: David Ramirez Date: Wed, 4 Sep 2024 13:39:11 +0000 Subject: [PATCH] Fixed pacing log message grammar --- kytos/core/pacing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kytos/core/pacing.py b/kytos/core/pacing.py index 0d4230a8..9ac7247c 100644 --- a/kytos/core/pacing.py +++ b/kytos/core/pacing.py @@ -143,7 +143,7 @@ async def ahit(self, action_name: str, *keys): *identifiers ) sleep_time = window_reset - time.time() - LOG.info(f'Limited reached: {identifiers}') + LOG.info(f'Limit reached: {identifiers}') await asyncio.sleep(sleep_time) def hit(self, action_name: str, *keys):