From aa5bbb67c7e8e0299680d0c1740eec744325ea56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romain=20BRON=C3=88S?= <romain.brones@synchrotron-soleil.fr> Date: Thu, 29 Feb 2024 08:43:59 +0100 Subject: [PATCH] fix(init): Increase timeout on watcher when init --- FofbTool/Utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FofbTool/Utils.py b/FofbTool/Utils.py index 609b5cc..5ceb81c 100644 --- a/FofbTool/Utils.py +++ b/FofbTool/Utils.py @@ -65,7 +65,7 @@ def init_watcher(): try: wprx=tango.DeviceProxy(tangopath["fofb-watcher"]) - wprx.set_timeout_millis(30000) + wprx.set_timeout_millis(60000) except tango.DevFailed as e: logger.error("Could not get DeviceProxy on {}".format(tangopath["fofb-watcher"])) logger.debug(str(e)) -- GitLab