Skip to content

Commit

Permalink
Added warning for OPC-UA Connector
Browse files Browse the repository at this point in the history
  • Loading branch information
samson0v committed Mar 22, 2024
1 parent da23568 commit 56c361c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions thingsboard_gateway/connectors/opcua/opcua_connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ def __init__(self, gateway, config, connector_type):
self.__server_conf = config.get("server")
self.name = self._config.get("name", 'OPC-UA ' + ''.join(choice(ascii_lowercase) for _ in range(5)) + " Connector")
self._log = init_logger(self.__gateway, self.name, self._config.get('logLevel', 'INFO'))
self._log.warning("OPC-UA Connector is deprecated and will be removed in the release v.4.0")
self.__interest_nodes = []
self.__available_object_resources = {}
self.__show_map = self.__server_conf.get("showMap", False)
Expand Down

0 comments on commit 56c361c

Please sign in to comment.