You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
If A sends a message to all (no to_id specified) then A also receives that message himself.
That's fine
But the message STAYS in the self.received_messages queue.
Messages from other agents are apparently removed after each tick.
This seems inconsistent
To Reproduce
in agent A:
msg=Message(content('Hello', from_id='me')
self.send_message(msg)
Expected behavior
A receives msg once
Actual behavior
msg stays in the self.received_messages list
The text was updated successfully, but these errors were encountered:
I added it to the list in #112, for it to be atleast included in the message system redesign. I keep this issue open for to allow it get priority over that redesign if need be.
Describe the bug
If A sends a message to all (no to_id specified) then A also receives that message himself.
That's fine
But the message STAYS in the self.received_messages queue.
Messages from other agents are apparently removed after each tick.
This seems inconsistent
To Reproduce
in agent A:
msg=Message(content('Hello', from_id='me')
self.send_message(msg)
Expected behavior
A receives msg once
Actual behavior
msg stays in the self.received_messages list
The text was updated successfully, but these errors were encountered: