From 868b6c2721b8c2f10b16ab4508466857b60663a2 Mon Sep 17 00:00:00 2001 From: Giuseppe Carboni Date: Wed, 12 Jan 2022 20:35:21 +0100 Subject: [PATCH] Fix #651, removed the Calmux sleep time when sending a command (#652) --- Common/Servers/PyCalmux/src/Calmux/PyCalmuxImpl.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/Common/Servers/PyCalmux/src/Calmux/PyCalmuxImpl.py b/Common/Servers/PyCalmux/src/Calmux/PyCalmuxImpl.py index 34a74ef73..b32f0abfa 100644 --- a/Common/Servers/PyCalmux/src/Calmux/PyCalmuxImpl.py +++ b/Common/Servers/PyCalmux/src/Calmux/PyCalmuxImpl.py @@ -146,8 +146,6 @@ class PyCalmuxImpl(CalMux, cc, services, lcycle): s.sendall(command) - time.sleep(0.1) - response = s.recv(1024) s.close() response = response.strip().split() -- GitLab