Replies: 3 comments
-
I found that there was an issue in the past with the same symptoms: #1176 |
Beta Was this translation helpful? Give feedback.
-
I found why my modification did not make it work: I am using WSL2 and PyCharm for this project and i made these changes from within PyCharm. But it turned out that PyCharm (probably in combination with WSL2 file access) does not write the changes to the source file. Performing the change manually in WSL2 suceeded and the Exception could be eliminated. |
Beta Was this translation helpful? Give feedback.
-
I added a PR to fix this issue: #1258 |
Beta Was this translation helpful? Give feedback.
-
Hello,
i am using the sync client in a python application and during disconnect/reconnect tests i found the following issue:
When i stop the server i get:
My subscription handler provides the method:
and the class is used for the subscription from within my OPCUAHandler class:
I tried to trace it down:
In sync.py there is a _SubHandler implemented
which wraps my sync Subhandler, but it doesnt implement the
status_change_notification
method.So it seems, that this part is missing in _SubHandler:
but even if i implement this the same error is thrown.
In sync.py
create_subscription
the handler is properly passedso i think i am missing something here. Do you have a hint what is going wrong?
Beta Was this translation helpful? Give feedback.
All reactions