From f88485c21a20a66031c217181e7d8ee1326e9ff4 Mon Sep 17 00:00:00 2001 From: Komal Thareja Date: Thu, 1 Aug 2024 11:16:08 -0400 Subject: [PATCH] modify check in slice wrapper --- fabric_cf/orchestrator/core/orchestrator_slice_wrapper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fabric_cf/orchestrator/core/orchestrator_slice_wrapper.py b/fabric_cf/orchestrator/core/orchestrator_slice_wrapper.py index a8fc6865..bf524ab4 100644 --- a/fabric_cf/orchestrator/core/orchestrator_slice_wrapper.py +++ b/fabric_cf/orchestrator/core/orchestrator_slice_wrapper.py @@ -715,5 +715,5 @@ def update_topology(self, *, topology: ExperimentTopology): capacities=sliver.capacities) def has_sliver_updates_at_authority(self): - return len(self.computed_reservations) and len(self.computed_remove_reservations) or \ + return len(self.computed_reservations) or len(self.computed_remove_reservations) or \ len(self.computed_modify_reservations) or len(self.computed_modify_properties_reservations)