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
Strange inversion between component and resource in module.py
so Routing key are "None" in the source_type and it causes problems with components in the canopsis interface
cf Line 418
#if message["source_type"] == "component": <-- ???
it should be
if message["source_type"] == "resource":
key = "%s.%s" % (
key,
message["resource"]
)
The text was updated successfully, but these errors were encountered:
Strange inversion between component and resource in module.py
so Routing key are "None" in the source_type and it causes problems with components in the canopsis interface
cf Line 418
#if message["source_type"] == "component": <-- ???
it should be
if message["source_type"] == "resource":
key = "%s.%s" % (
key,
message["resource"]
)
The text was updated successfully, but these errors were encountered: