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
IntelMQ 1.1 changed how the "extra" field works but tries to provide a
backwards compatible interface. In particular, it's still possible to
assign a new dictionary to "extra" with add method with overwrite=True. There are at least two cases that are not handled
correctly when doing this:
Keys not present in the new dictionary that were present before are
not removed
Keys with empty values, e.g. empty dictionaries, are ignored and
therefore are not changed.
IntelMQ 1.1 changed how the
"extra"
field works but tries to provide abackwards compatible interface. In particular, it's still possible to
assign a new dictionary to
"extra"
with add method withoverwrite=True
. There are at least two cases that are not handledcorrectly when doing this:
Keys not present in the new dictionary that were present before are
not removed
Keys with empty values, e.g. empty dictionaries, are ignored and
therefore are not changed.
Example session:
so far, so good.
I would have expected this to return
{"a": {}}
The text was updated successfully, but these errors were encountered: