From e8daeb05562aa6094f4d81b36abc120e45373f0d Mon Sep 17 00:00:00 2001 From: Thomas Kluyver <thomas@kluyver.me.uk> Date: Thu, 27 Apr 2023 16:14:30 +0100 Subject: [PATCH] Fix webservice files check for LPD Mini karabo_das --- webservice/webservice.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/webservice/webservice.py b/webservice/webservice.py index 335cacdbe..0f6ecbbd0 100644 --- a/webservice/webservice.py +++ b/webservice/webservice.py @@ -994,8 +994,15 @@ class ActionsServer: dconfig = data_conf[karabo_id] # check for files according to mapping in raw run dir. + + # data-mapping for LPD mini uses karabo-da names like + # LPDMINI00/8 to identify individual modules. The /8 is not + # part of the file name + data_agg_names = { + kda.split('/')[0] for kda in dconfig['karabo-da'] + } if any(y in x for x in fl - for y in dconfig['karabo-da']): + for y in data_agg_names): thisconf = copy.copy(dconfig) if isinstance(pconf[karabo_id], dict): thisconf.update(copy.copy(pconf[karabo_id])) -- GitLab