Skip to content

Commit

Permalink
check for sliver in existing fabnetext
Browse files Browse the repository at this point in the history
  • Loading branch information
kthare10 committed Aug 6, 2024
1 parent e611403 commit a8bec12
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions fabric_cf/orchestrator/core/orchestrator_slice_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -650,6 +650,10 @@ def __check_modify_on_fabnetv4ext(self, *, rid: str, req_sliver: NetworkServiceS
if rid == reservation.get_reservation_id():
continue

if not reservation.get_sliver():
self.logger.warning(f"No sliver found, Skipping reservation: {reservation}")
continue

if reservation.get_sliver().get_type() != req_sliver.get_type():
continue

Expand Down

0 comments on commit a8bec12

Please sign in to comment.