From ab8ec1ead66e7fd9c62ef26cba532c9f6dc79c53 Mon Sep 17 00:00:00 2001 From: Daniel Nemergut <dnemergu@nrao.edu> Date: Fri, 22 Sep 2023 11:31:09 -0400 Subject: [PATCH] There won't be a ready status on the dir name coming to the workflow, just appedning a suffix to whatever we're given --- .../versions/569416c40ca8_ingest_obs_workflow_renaming.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/shared/workspaces/alembic/versions/569416c40ca8_ingest_obs_workflow_renaming.py b/shared/workspaces/alembic/versions/569416c40ca8_ingest_obs_workflow_renaming.py index fd104d84d..d2e3775fa 100644 --- a/shared/workspaces/alembic/versions/569416c40ca8_ingest_obs_workflow_renaming.py +++ b/shared/workspaces/alembic/versions/569416c40ca8_ingest_obs_workflow_renaming.py @@ -26,9 +26,9 @@ set -o errexit new_ingest_obs_sh = """#!/bin/sh set -o errexit -running=${2//ready/running} -ingested=${2//ready/ingested} -failed=${2//ready/failed} +running=$2.running +ingested=$2.ingested +failed=$2.failed mv $2 $running -- GitLab