Add resource node persistence

This commit is contained in:
2026-05-17 17:08:05 -07:00
parent 843340ebdc
commit 5da545e000
13 changed files with 276 additions and 4 deletions
+4
View File
@@ -65,6 +65,10 @@ def main():
if actor.get_editor_property("remaining_harvests") <= 0:
failures.append(f"{label} has no remaining harvests")
persistence_node_id = str(actor.get_editor_property("persistence_node_id"))
if persistence_node_id != label:
failures.append(f"{label} persistence node id expected {label}, got {persistence_node_id}")
if failures:
raise RuntimeError("Ground Zero resource verification failed: " + "; ".join(failures))