From f2b9b8cb816247b67a40c27f1dd05bbf7b438b15 Mon Sep 17 00:00:00 2001 From: ahmedk <karim.ahmed@xfel.eu> Date: Tue, 8 Aug 2023 07:57:45 +0200 Subject: [PATCH] Update the correct place for adding runs for correct and dark --- webservice/webservice.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webservice/webservice.py b/webservice/webservice.py index d007829e6..cac255115 100644 --- a/webservice/webservice.py +++ b/webservice/webservice.py @@ -1447,7 +1447,7 @@ class ActionsServer: partition=partition, action=action, instrument=instrument, cycle=cycle, proposal=proposal, - runs="_".join([f"r{r}" for r in run_nrs]), + runs="_".join([f"r{r:04d}" for r in run_nrs]), time_stamp=request_time.strftime('%y%m%d_%H%M%S_%f'), det_instance=karabo_id, request_time=request_time.isoformat(), -- GitLab