From 4bfd6f8f609cd65036273b922b2398a1f1cd03f2 Mon Sep 17 00:00:00 2001 From: Thomas Kluyver <thomas@kluyver.me.uk> Date: Mon, 3 Jul 2023 17:25:25 +0100 Subject: [PATCH] Use _ instead of . to mark fractional seconds for report path --- webservice/webservice.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webservice/webservice.py b/webservice/webservice.py index 33cb29c43..34da59a3d 100644 --- a/webservice/webservice.py +++ b/webservice/webservice.py @@ -1170,7 +1170,7 @@ class ActionsServer: '--env-cache', f'/gpfs/exfel/data/scratch/{getuser()}/calib-repeat-envs', '--report-to', - f'{reports_dir}/{karabo_id}_RECORRECT_{request_time:%y%m%d_%H%M%S.%f}' + f'{reports_dir}/{karabo_id}_RECORRECT_{request_time:%y%m%d_%H%M%S_%f}' ] with time_db_transaction(self.job_db, 'Insert execution'): @@ -1445,7 +1445,7 @@ class ActionsServer: action=action, instrument=instrument, cycle=cycle, proposal=proposal, runs="_".join([f"r{r}" for r in run_nrs]), - time_stamp=request_time.strftime('%y%m%d_%H%M%S.%f'), + time_stamp=request_time.strftime('%y%m%d_%H%M%S_%f'), det_instance=karabo_id, request_time=request_time.isoformat(), ).split() -- GitLab