Skip to content

Commit

Permalink
fix: include description in job submission (#188)
Browse files Browse the repository at this point in the history
Signed-off-by: ben <[email protected]>
  • Loading branch information
benl-2023 authored Oct 25, 2024
1 parent 1f17913 commit c279cfd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/deadline/maya_submitter/maya_render_submitter.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,10 @@ def _get_job_template(
) -> dict[str, Any]:
job_template = deepcopy(default_job_template)

# Set the job's name
# Set the job's name and description
job_template["name"] = settings.name
if settings.description:
job_template["description"] = settings.description

# If there are multiple frame ranges, split up the Frames parameter by layer
if render_layers[0].frames_parameter_name:
Expand Down

0 comments on commit c279cfd

Please sign in to comment.