Skip to content

Commit

Permalink
modify check in slice wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
kthare10 committed Aug 1, 2024
1 parent 38cfab5 commit f88485c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fabric_cf/orchestrator/core/orchestrator_slice_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit f88485c

Please sign in to comment.