mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
♻️ change how redshift version is passed
This commit is contained in:
parent
3e4b8a1522
commit
5d787d3fc3
1 changed files with 4 additions and 2 deletions
|
|
@ -271,9 +271,11 @@ class HoudiniSubmitDeadline(
|
||||||
)
|
)
|
||||||
elif family == "redshift_rop":
|
elif family == "redshift_rop":
|
||||||
plugin_info = RedshiftRenderPluginInfo(
|
plugin_info = RedshiftRenderPluginInfo(
|
||||||
SceneFile=instance.data["ifdFile"],
|
SceneFile=instance.data["ifdFile"]
|
||||||
Version=os.getenv("REDSHIFT_VERSION", "3.5.22"),
|
|
||||||
)
|
)
|
||||||
|
if os.getenv("REDSHIFT_VERSION"):
|
||||||
|
plugin_info.Version = os.getenv("REDSHIFT_VERSION"),
|
||||||
|
|
||||||
else:
|
else:
|
||||||
self.log.error(
|
self.log.error(
|
||||||
"Family '%s' not supported yet to split render job",
|
"Family '%s' not supported yet to split render job",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue