Skip to content

Commit

Permalink
Don't reset attribute_value_callback on write
Browse files Browse the repository at this point in the history
  • Loading branch information
IIIMADDINIII authored and oroulet committed Jul 1, 2024
1 parent ec112a8 commit bf9ac44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion asyncua/server/address_space.py
Original file line number Diff line number Diff line change
Expand Up @@ -794,7 +794,7 @@ async def write_attribute_value(self, nodeid: ua.NodeId, attr: ua.AttributeIds,
attval.value_setter(node, attr, value)
else:
attval.value = value
attval.value_callback = None
attval.value_callback = None

for k, v in attval.datachange_callbacks.items():
try:
Expand Down

0 comments on commit bf9ac44

Please sign in to comment.