diff --git a/wsio/finstitutions/trading/tick_out.py b/wsio/finstitutions/trading/tick_out.py index c9ac607..823c3dc 100644 --- a/wsio/finstitutions/trading/tick_out.py +++ b/wsio/finstitutions/trading/tick_out.py @@ -231,7 +231,9 @@ async def ticks_from_kafka( ) # If there are no updates to give: - if not ticks: continue + if not ticks: + no_context_printer("No ticks.") + continue # Each message must be treated as an array of tick updates (list of dicts). # In case the producer is sending each individual tick as a separate message,