Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
imbeacon committed Sep 25, 2024
2 parents a2b084b + f7b1775 commit f961319
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions thingsboard_gateway/connectors/opcua/opcua_connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ async def __disconnect(self):
self.__log.warning('%s could not be disconnected from OPC-UA Server: %s', self.name, e)

async def __unsubscribe_from_node(self, device: Device, node):
node['valid'] = False
node.pop('valid', None)
if node.get('node') is not None and self.__enable_subscriptions:
subscription_id = device.nodes_data_change_subscriptions.get(node['node'].nodeid, {}).get('subscription')
if subscription_id is not None:
Expand Down Expand Up @@ -318,6 +318,7 @@ async def disconnect_if_connected(self):
if self.__enable_subscriptions:
for device in self.__device_nodes:
device.subscription = None
device.nodes_data_change_subscriptions = {}
await self.__unsubscribe_from_nodes()
await self.__client.disconnect()
except Exception:
Expand Down Expand Up @@ -610,10 +611,6 @@ async def _load_devices_nodes(self):

if node.get('valid') is None or (node.get('valid') and not self.__enable_subscriptions):
if self.__enable_subscriptions and not subscription_exists and not self.__stopped:
if device.subscription is None:
device.subscription = await self.__client.create_subscription(
self.__sub_check_period_in_millis, SubHandler(
self.__sub_data_to_convert, self.__log))
if found_node.nodeid not in device.nodes_data_change_subscriptions:
if found_node.nodeid not in self.__nodes_config_cache:
self.__nodes_config_cache[found_node.nodeid] = []
Expand All @@ -622,6 +619,12 @@ async def _load_devices_nodes(self):
"subscription": None,
"key": node['key'],
"section": section}

if device.subscription is None:
device.subscription = await self.__client.create_subscription(
self.__sub_check_period_in_millis, SubHandler(
self.__sub_data_to_convert, self.__log))

node['id'] = found_node.nodeid.to_string()

node['valid'] = True
Expand Down Expand Up @@ -665,10 +668,6 @@ async def _load_devices_nodes(self):
subs.extend(subs_batch)
for node, conf, subscription_id in zip(nodes_to_subscribe, conf, subs):
device.nodes_data_change_subscriptions[node.nodeid]['subscription'] = subscription_id
else:
self.__log.error('Failed to subscribe on data change; client was disconnected!')
raise ConnectionError('Client was disconnected!')

except Exception as e:
self.__log.exception("Error loading nodes: %s", e)
raise e
Expand Down

0 comments on commit f961319

Please sign in to comment.