removing single node from subscription #1556
Unanswered
gowshiselva
asked this question in
Q&A
Replies: 1 comment 1 reply
-
your in the wrong repo! |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
currently subscriptionhandler.py (libraries/opcua/server/subscriptionHandler.py) class has the following method to remove the nodes from the subscription, it removes the all the nodes from the subscription, I think there is no way to remove only one node from the subscription
async def remove_monitored_items(self): if self.subscription: # Couldn't find a method to remove monitored item(s) only. Deleting # whole subscription will anyway remove all monitored items also. await self.client.delete_subscriptions( [self.subscription.subscription_id]) self.subscription = None
Beta Was this translation helpful? Give feedback.
All reactions