From 288b5bd10cdf10e66d95129847b83565b4cfe7e7 Mon Sep 17 00:00:00 2001 From: Ana Clara Oliveira Date: Tue, 5 Sep 2023 14:49:19 -0300 Subject: [PATCH 1/3] sofb.FIX: fix put to queue in write method --- as-ap-sofb/as_ap_sofb/as_ap_sofb.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/as-ap-sofb/as_ap_sofb/as_ap_sofb.py b/as-ap-sofb/as_ap_sofb/as_ap_sofb.py index d2105ada..a2439596 100755 --- a/as-ap-sofb/as_ap_sofb/as_ap_sofb.py +++ b/as-ap-sofb/as_ap_sofb/as_ap_sofb.py @@ -50,7 +50,8 @@ def read(self, reason): def write(self, reason, value): if not self._isValid(reason, value): return False - self._write_queue.put(self._write, (reason, value)) + self._write_queue.put( + (self._write, (reason, value)), block=False) return True def _write(self, reason, value): From 4563ff9d6d26c86b78ae3bc57094f1fbdb47ff44 Mon Sep 17 00:00:00 2001 From: Ana Clara Oliveira Date: Tue, 5 Sep 2023 14:49:31 -0300 Subject: [PATCH 2/3] Update version to 3.43.1 --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index a9184766..9291fe6e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.43.0 +3.43.1 From 239e59fec8437a9948005686864edeca31a03e7d Mon Sep 17 00:00:00 2001 From: Ana Clara Oliveira Date: Tue, 5 Sep 2023 16:51:03 -0300 Subject: [PATCH 3/3] TI.FIX: fix put to queue in write method --- as-ti-control/as_ti_control/as_ti_control.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/as-ti-control/as_ti_control/as_ti_control.py b/as-ti-control/as_ti_control/as_ti_control.py index f610cee7..98cf1050 100644 --- a/as-ti-control/as_ti_control/as_ti_control.py +++ b/as-ti-control/as_ti_control/as_ti_control.py @@ -81,7 +81,8 @@ def read(self, reason): def write(self, reason, value): if not self._isValid(reason, value): return False - self._write_queue.put(self._write, (reason, value)) + self._write_queue.put( + (self._write, (reason, value)), block=False) return True def _write(self, reason, value):