From 065594229033daf590ec8bd8c2c00571a7f759ad Mon Sep 17 00:00:00 2001 From: Sam Kagan <skagan@nrao.edu> Date: Thu, 27 Jun 2024 10:21:24 -0600 Subject: [PATCH] Fixed vela for restores Specifically: * Renamed vela log and weblog to match CASA's * Didn't write out *calapply.txt for restores --- apps/cli/executables/pexable/vela/vela/forger.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/cli/executables/pexable/vela/vela/forger.py b/apps/cli/executables/pexable/vela/vela/forger.py index c32107c64..ff097bfa3 100644 --- a/apps/cli/executables/pexable/vela/vela/forger.py +++ b/apps/cli/executables/pexable/vela/vela/forger.py @@ -39,7 +39,7 @@ class VelaLog: # forging three files. 2 for pipeline completion, 1 log file # vela-pipeline.sh.out.txt # vela-pipeline.sh.err.txt - # vela-<date_as_string>-<timestring>.log + # casa-<date_as_string>-<timestring>.log workflow_name = parameters["workflowName"] should_fail = parameters["fail"] @@ -71,7 +71,7 @@ class VelaLog: datestring = arrow.now().format("YYYYMMDD") timestring = arrow.utcnow().format("hhmmss") - log = open(f"vela-{datestring}-{timestring}.log", "w") + log = open(f"casa-{datestring}-{timestring}.log", "w") log.write(forged_content(self.product_type, should_fail)) log.close() @@ -194,7 +194,7 @@ class VelaProduct: datestring = arrow.now().format("YYYYMMDD") timestring = arrow.utcnow().format("hhmmss") - dirname = f"pipeline-{datestring}-{timestring}" + dirname = f"pipeline-{datestring}T{timestring}" os.mkdir(dirname) os.chdir(path + "/" + dirname) os.mkdir("html") -- GitLab