From 2d4bda00a862a84c7ac164dbd95ba3d756e9e11a Mon Sep 17 00:00:00 2001 From: thijs snijder <snijder@astron.nl> Date: Mon, 10 May 2021 17:24:38 +0200 Subject: [PATCH] didnt include pass function exception --- devices/SDP.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/devices/SDP.py b/devices/SDP.py index a6e9c15dc..10f222811 100644 --- a/devices/SDP.py +++ b/devices/SDP.py @@ -136,7 +136,10 @@ class SDP(hardware_device): # map an access helper class for i in self.attr_list(): - i.set_comm_client(self.OPCua_client) + try: + i.set_comm_client(self.OPCua_client) + except: + pass self.OPCua_client.start() -- GitLab