Skip to content

Commit

Permalink
remove humanization conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
wbarnha committed Apr 1, 2024
1 parent adcbc81 commit 3d737c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions faust/transport/drivers/aiokafka.py
Original file line number Diff line number Diff line change
Expand Up @@ -847,7 +847,7 @@ def _verify_aiokafka_event_path(self, now: float, tp: TP) -> bool:
self.log.error(
SLOW_PROCESSING_NO_FETCH_SINCE_START,
tp,
humanize_seconds_ago(secs_since_started),
secs_since_started,
)
return True

Expand All @@ -857,7 +857,7 @@ def _verify_aiokafka_event_path(self, now: float, tp: TP) -> bool:
self.log.error(
SLOW_PROCESSING_NO_RECENT_FETCH,
tp,
humanize_seconds_ago(secs_since_request),
secs_since_request,
)
return True

Expand Down

0 comments on commit 3d737c7

Please sign in to comment.