From cb9176960ca38972bfac13b828e84012b4cb45ae Mon Sep 17 00:00:00 2001
From: thijs snijder <snijder@astron.nl>
Date: Mon, 17 May 2021 17:10:36 +0200
Subject: [PATCH] changed set_pass_func function calls in arguments

---
 devices/APSCTL.py     | 2 +-
 devices/PCC.py        | 2 +-
 devices/SDP.py        | 5 +++--
 devices/SNMP.py       | 2 +-
 devices/ini_device.py | 2 +-
 5 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/devices/APSCTL.py b/devices/APSCTL.py
index 62bc56f85..0cb322251 100644
--- a/devices/APSCTL.py
+++ b/devices/APSCTL.py
@@ -167,7 +167,7 @@ class APSCTL(hardware_device):
                 i.set_comm_client(self.OPCua_client)
             except:
                 # use the pass function instead of setting read/write fails
-                i.set_pass_func(self.OPCua_client)
+                i.set_pass_func()
                 self.error_stream("error in getting APSCTL attribute: {} from client".format(i))
 
         self.OPCua_client.start()
diff --git a/devices/PCC.py b/devices/PCC.py
index bb35a0b6c..da615d180 100644
--- a/devices/PCC.py
+++ b/devices/PCC.py
@@ -146,7 +146,7 @@ class PCC(hardware_device):
                 i.set_comm_client(self.OPCua_client)
             except:
                 # use the pass function instead of setting read/write fails
-                i.set_pass_func(self.OPCua_client)
+                i.set_pass_func()
                 self.error_stream("error in getting PCC attribute: {} from client".format(i))
 
         self.OPCua_client.start()
diff --git a/devices/SDP.py b/devices/SDP.py
index 0e69a4362..ebe680999 100644
--- a/devices/SDP.py
+++ b/devices/SDP.py
@@ -140,8 +140,9 @@ class SDP(hardware_device):
                 i.set_comm_client(self.OPCua_client)
             except:
                 # use the pass function instead of setting read/write fails
-                i.set_pass_func(self.OPCua_client)
-                self.error_stream("error in getting SDP attribute: {} from client".format(i))
+                i.set_pass_func()
+                self.debug_stream("error in getting SDP attribute: {} from client".format(i))
+                pass
 
         self.OPCua_client.start()
 
diff --git a/devices/SNMP.py b/devices/SNMP.py
index c9a8337d5..078ca6ddf 100644
--- a/devices/SNMP.py
+++ b/devices/SNMP.py
@@ -94,7 +94,7 @@ class SNMP(hardware_device):
                 i.set_comm_client(self.snmp_manager)
             except:
                 # use the pass function instead of setting read/write fails
-                i.set_pass_func(self.snmp_manager)
+                i.set_pass_func()
                 self.error_stream("error in getting SNMP attribute: {} from client".format(i))
 
         self.snmp_manager.start()
diff --git a/devices/ini_device.py b/devices/ini_device.py
index 6be6b1a61..9b3e83a1e 100644
--- a/devices/ini_device.py
+++ b/devices/ini_device.py
@@ -112,7 +112,7 @@ class ini_device(hardware_device):
                 i.set_comm_client(self.ini_client)
             except:
                 # use the pass function instead of setting read/write fails
-                i.set_pass_func(self.ini_client)
+                i.set_pass_func()
                 self.error_stream("error in getting ini attribute: {} from client".format(i))
 
         self.ini_client.start()
-- 
GitLab