From 4ce2d41255880fd00c98fec5a18f9800c76c50c0 Mon Sep 17 00:00:00 2001 From: chausman <chausman@nrao.edu> Date: Mon, 8 Aug 2022 14:00:54 -0600 Subject: [PATCH] fix srdp validation single vs. multi ingestion bug, workflow id name --- .../executables/pexable/ingest_envoy/ingest_envoy/solicitor.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/cli/executables/pexable/ingest_envoy/ingest_envoy/solicitor.py b/apps/cli/executables/pexable/ingest_envoy/ingest_envoy/solicitor.py index 1bcf260d2..b4a738ba6 100644 --- a/apps/cli/executables/pexable/ingest_envoy/ingest_envoy/solicitor.py +++ b/apps/cli/executables/pexable/ingest_envoy/ingest_envoy/solicitor.py @@ -114,8 +114,7 @@ class Solicitor: if srdp_flag is True: # if this is SRDP, verify the initial weblog exists get_weblog_url = ( - f"{self.workflow_url}/workflows/std_calibration/requests/" - f"{wf_request['current_workflow_request_id']}/weblog" + f"{self.workflow_url}/workflows/std_calibration/requests/{wf_request['workflow_request_id']}/weblog" ) response = requests.get(get_weblog_url) -- GitLab