From b4496f8a0109f2a42e315909e7a9e93d733fd9f7 Mon Sep 17 00:00:00 2001
From: lb584 <lb584@cam.ac.uk>
Date: Tue, 17 Oct 2023 11:24:28 +0100
Subject: [PATCH] fixing bug

---
 coordinator/Processor.py | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/coordinator/Processor.py b/coordinator/Processor.py
index cf0f28c..f62dd70 100755
--- a/coordinator/Processor.py
+++ b/coordinator/Processor.py
@@ -518,6 +518,7 @@ class Processor:
                     json.dump(configjson, write_file, indent = 4)
 
                 # proc_description = universal_config['ProcessInJob']
+                proc_description = 'ProcessInJob'
                 try:
                     proc_out = self.process_in_job(jobPath, status, configjson, component)
                 except:
@@ -548,7 +549,8 @@ class Processor:
 
                 # Run EWS-plotting command
 
-                proc_description = universal_config['ProcessEWSPlotting']
+                # proc_description = universal_config['ProcessEWSPlotting']
+                proc_description = 'ProcessEWSPlotting'
                 try:
                     EWSPlottingOutputs = self.process_post_job(jobPath, configjson)
                 except:
-- 
GitLab