Skip to content

Commit

Permalink
added --workflowName to pchain
Browse files Browse the repository at this point in the history
  • Loading branch information
tmaeno committed Oct 2, 2023
1 parent 465b39d commit 4368780
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
3 changes: 3 additions & 0 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
** Release Notes

1.5.65
* added --workflowName to pchain

1.5.64
* fixed pyproject.toml
* improved various messages
Expand Down
2 changes: 1 addition & 1 deletion pandaclient/PandaToolsPkgInfo.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
release_version = "1.5.64"
release_version = "1.5.65"
4 changes: 4 additions & 0 deletions pandaclient/PchainScript.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,8 @@ def main():
help="set prodSourceLabel")
group_submit.add_argument('--workingGroup', action='store', dest='workingGroup', default=None,
help="set workingGroup")
group_submit.add_argument('--workflowName', action='store', dest='workflowName', default=None,
help="set workflow name")

group_expert.add_argument('--intrSrv', action='store_const', const=True, dest='intrSrv', default=False,
help="Please don't use this option. Only for developers to use the intr panda server")
Expand Down Expand Up @@ -199,6 +201,8 @@ def _onExit(dir, del_command):
'outDS': options.outDS,
'base_platform': os.environ.get('ALRB_USER_PLATFORM', 'centos7')
}
if options.workflowName:
params['workflow_name'] = options.workflowName

# making task params with dummy exec
task_type_args = {'container': '--containerImage __dummy_container__'}
Expand Down

0 comments on commit 4368780

Please sign in to comment.