Push through reuseLastVersion value to deadline metadata

This commit is contained in:
Petr Kalis 2025-10-10 16:05:04 +02:00
parent b782212328
commit a7209e68f0

View file

@ -249,7 +249,8 @@ def create_skeleton_instance(
# map inputVersions `ObjectId` -> `str` so json supports it
"inputVersions": list(map(str, data.get("inputVersions", []))),
"colorspace": data.get("colorspace"),
"hasExplicitFrames": data.get("hasExplicitFrames")
"hasExplicitFrames": data.get("hasExplicitFrames") or False,
"reuseLastVersion": data.get("reuseLastVersion") or False
}
if data.get("renderlayer"):