Skip to content

Commit

Permalink
get group names from attribute_values
Browse files Browse the repository at this point in the history
  • Loading branch information
MustafaJafar committed Jul 19, 2024
1 parent fa891aa commit d21fa42
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 d21fa42

Please sign in to comment.