Skip to content

Commit

Permalink
Merge pull request #13 from ynput/bugfix/AY-6119_Houdini-Render-group…
Browse files Browse the repository at this point in the history
…-name-is-not-working

Houdini Fix getting group name in DL submission
  • Loading branch information
BigRoy authored Jul 19, 2024
2 parents fa891aa + d21fa42 commit dbc1298
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -224,15 +224,19 @@ def get_job_info(self, dependency_job_ids=None):
job_info.ChunkSize = attribute_values.get(
"export_chunk", self.export_chunk_size
)
job_info.Group = self.export_group
job_info.Group = attribute_values.get(
"export_group", self.export_group
)
else:
job_info.Priority = attribute_values.get(
"priority", self.priority
)
job_info.ChunkSize = attribute_values.get(
"chunk", self.chunk_size
)
job_info.Group = self.group
job_info.Group = attribute_values.get(
"group", self.group
)

# Apply render globals, like e.g. data from collect machine list
render_globals = instance.data.get("renderGlobals", {})
Expand Down

0 comments on commit dbc1298

Please sign in to comment.