Skip to content

Commit

Permalink
Fix storing zdt
Browse files Browse the repository at this point in the history
  • Loading branch information
Frost, Emilie committed Nov 23, 2023
1 parent 3ed1e75 commit 0c7b65c
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions mango/container/tcp.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,6 @@ async def send_message(
:param receiver_id: The agent id of the receiver
:param kwargs: Additional parameters to provide protocol specific settings
"""
print('send msg', self.addr)
self.msgs += 1
if isinstance(receiver_addr, str) and ":" in receiver_addr:
receiver_addr = receiver_addr.split(":")
Expand Down Expand Up @@ -248,7 +247,6 @@ async def _send_external_message(self, addr, message) -> bool:
:param message: The message
:return:
"""
print('send external msg', self.addr)
self.msgs += 1
if addr is None or not isinstance(addr, (tuple, list)) or len(addr) != 2:
logger.warning(
Expand Down

0 comments on commit 0c7b65c

Please sign in to comment.