Skip to content

Commit

Permalink
updating licensing, adding the run id to the ast harvester command line
Browse files Browse the repository at this point in the history
  • Loading branch information
PhillipsOwen committed Jan 8, 2024
1 parent 7ccc75b commit 92663ab
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/supervisor/job_supervisor.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit 92663ab

Please sign in to comment.