From 3951b3e0a1a008cb8c12d5edab2655d375ea7727 Mon Sep 17 00:00:00 2001 From: Damien De Paoli Date: Mon, 18 Jan 2021 13:19:50 +1100 Subject: [PATCH] do not need to send any data down the client conn to wake up the pa_job_manager --- job.py | 1 - 1 file changed, 1 deletion(-) diff --git a/job.py b/job.py index ea9c526..281ae85 100644 --- a/job.py +++ b/job.py @@ -62,7 +62,6 @@ def NewJob(name, num_passes="1", num_files="0", wait_for=None ): print("Waking up PA Job Manager") s=socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect((PA_JOB_MANAGER_HOST, PA_JOB_MANAGER_PORT)) - s.sendall(b'Hello, world') s.close() except Exception as e: st.SetAlert("danger")