Skip to content

Commit 4f839e9

Browse files
committed
error handling
1 parent 0109c1b commit 4f839e9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

fabric_cf/orchestrator/core/orchestrator_slice_wrapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -593,7 +593,7 @@ def modify(self, *, new_slice_graph: ABCASMPropertyGraph) -> Tuple[TopologyDiff,
593593
if not (flag & WhatsModifiedFlag.CAPACITIES):
594594
continue
595595
sliver, parent_node_id = FimHelper.get_parent_node(graph_model=existing_topology.graph_model, node=x)
596-
if not sliver.reservation_info or sliver.reservation_info.reservation_id:
596+
if not sliver.reservation_info or not sliver.reservation_info.reservation_id:
597597
self.logger.warning(f"Skipping modified interface -- possibly the interface on component; "
598598
f"update on corresponding network service interface would be picked -- {x}")
599599
continue

0 commit comments

Comments
 (0)