Skip to content

Commit

Permalink
Fix issue with length of return value
Browse files Browse the repository at this point in the history
  • Loading branch information
wbrannon committed May 22, 2024
1 parent d978758 commit 2c3b2d5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/fusion_engine_client/parsers/mixed_log_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,8 @@ def get_available_source_ids(self,

while num_messages_read < num_messages_to_read:
try:
header, payload, message_bytes, message_index = self.read_next()
result = self.read_next()
header = result[0]
except StopIteration:
break

Expand Down

0 comments on commit 2c3b2d5

Please sign in to comment.