From 92663ab0aaece24c2095cae1deca78e53e9f4033 Mon Sep 17 00:00:00 2001 From: Phil Owen <19691521+PhillipsOwen@users.noreply.github.com> Date: Mon, 8 Jan 2024 10:05:15 -0500 Subject: [PATCH] updating licensing, adding the run id to the ast harvester command line --- src/supervisor/job_supervisor.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/supervisor/job_supervisor.py b/src/supervisor/job_supervisor.py index 9c7db9c..f27ffad 100644 --- a/src/supervisor/job_supervisor.py +++ b/src/supervisor/job_supervisor.py @@ -1,5 +1,6 @@ # SPDX-FileCopyrightText: 2022 Renaissance Computing Institute. All rights reserved. # SPDX-FileCopyrightText: 2023 Renaissance Computing Institute. All rights reserved. +# SPDX-FileCopyrightText: 2024 Renaissance Computing Institute. All rights reserved. # # SPDX-License-Identifier: GPL-3.0-or-later # SPDX-License-Identifier: LicenseRef-RENCI @@ -367,7 +368,7 @@ def get_base_command_line(self, run: dict, job_type: JobType) -> (list, bool): thredds_url = thredds_url.replace('fileServer', 'dodsC') # create the additional command line parameters - command_line_params = [thredds_url, job_configs[job_type]['DATA_MOUNT_PATH'] + job_configs[job_type]['SUB_PATH']] + command_line_params = [thredds_url, job_configs[job_type]['DATA_MOUNT_PATH'] + job_configs[job_type]['SUB_PATH'], str(run['id'])] # is this an adcirc time to cog converter job array elif job_type == JobType.ADCIRCTIME_TO_COG: