Skip to content
Snippets Groups Projects

Ws 254 messaging bug fix

Merged Daniel Lyons requested to merge WS-254-messaging-bug-fix-cherrypick into main
1 file
+ 14
2
Compare changes
  • Side-by-side
  • Inline
@@ -102,15 +102,27 @@ class Router(MessageReceiverIF):
:param message: Received message
"""
logger.debug(f">>> ROUTER RECEIVING MESSAGE {message}")
if self.service == "capability":
logger.debug(f"receiving message: {message}")
message = json.loads(message)
for pattern, callbacks in self.callbacks.items():
# Convert hashable str version of pattern back to dict
dict_pattern = json.loads(pattern)
msg = message['type'] if hasattr(message, 'type') else message['application']
logger.debug(f"\nRouter.receive_message > pattern: {dict_pattern}, message: {msg}, matches: {self.matches(pattern, message)}\n")
#
# # We need to know at least the message type or the application
# if "type" not in message.keys() and "application" not in message.keys():
# raise ValueError(f"could not find type nor application in message\n{message}")
msg_recd = message["type"] if "type" in message.keys() else message["application"]
logger.debug(
f">>> Router.receive_message > pattern: {dict_pattern}, message: {msg_recd}, matches:"
f" {self.matches(pattern, message)}\n"
)
if self.matches(dict_pattern, message):
# print(f"Router.receive_message> pattern {pattern} matches with message {message}")
Loading