1
0
mirror of https://github.com/FreeOpcUa/opcua-asyncio synced 2025-10-29 17:07:18 +08:00

accidentally wrote PostWrite instead of PreWrite

This commit is contained in:
Joey Faulkner
2020-09-02 10:11:20 +02:00
parent e6146e8666
commit 657a3850ea

View File

@@ -123,7 +123,7 @@ class InternalSession:
user = User()
else:
user = self.user
await self.iserver.callback_service.dispatch(CallbackType.PostWrite,
await self.iserver.callback_service.dispatch(CallbackType.PreWrite,
ServerItemCallback(params, None, user))
write_result = await self.iserver.attribute_service.write(params, user=user)
await self.iserver.callback_service.dispatch(CallbackType.PostWrite,