Skip to content

Commit

Permalink
Fixed func params
Browse files Browse the repository at this point in the history
  • Loading branch information
SviatoslavBoichuk committed Dec 10, 2024
1 parent 2405379 commit 7d1588c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/kafka_producer/src/consumer.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def get_single_msg(self, timeout_ms: int = 12000):

return None

def get_msg_by_substring(self, substring: int):
def get_msg_by_substring(self, substring: int, uuid_val: int, timeout_ms: int = 12000):
res_uuid = uuid.UUID(int=uuid_val)

assert self.is_connected(),\
Expand Down

0 comments on commit 7d1588c

Please sign in to comment.