Skip to content

Commit

Permalink
chore: support Deadline Client submitter-name option (#131)
Browse files Browse the repository at this point in the history
Signed-off-by: Stephen Crowe <[email protected]>
  • Loading branch information
crowecawcaw authored Oct 23, 2024
1 parent 056003d commit 08832cc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ classifiers = [
]

dependencies = [
"deadline >= 0.48.8,< 0.49",
"deadline >= 0.48.9,< 0.49",
"openjd-adaptor-runtime >= 0.7,< 0.9",
]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ def gui_submit(bundle_directory: str) -> Optional[dict[str, Any]]:
shell_executable,
"-i",
"-c",
f"echo \"START_DEADLINE_OUTPUT\";deadline bundle gui-submit '{bundle_directory}' --output json --install-gui",
f"echo \"START_DEADLINE_OUTPUT\"; deadline bundle gui-submit '{bundle_directory}' --output json --install-gui --submitter-name KeyShot",
],
check=True,
capture_output=True,
Expand All @@ -336,6 +336,8 @@ def gui_submit(bundle_directory: str) -> Optional[dict[str, Any]]:
"--output",
"json",
"--install-gui",
"--submitter-name",
"KeyShot",
],
check=True,
capture_output=True,
Expand Down

0 comments on commit 08832cc

Please sign in to comment.