Skip to content

Commit

Permalink
check all states other than Closed
Browse files Browse the repository at this point in the history
  • Loading branch information
kthare10 committed May 3, 2024
1 parent df7f7b2 commit 2e5ea0a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions tools/audit.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,8 +269,11 @@ def clean_sliver_inconsistencies(self):
db_host=self.database_config[Constants.PROPERTY_CONF_DB_HOST],
logger=self.logger)

states = [ReservationStates.Active.value, ReservationStates.ActiveTicketed.value,
ReservationStates.Failed.value]
states = [ReservationStates.Active.value,
ReservationStates.ActiveTicketed.value,
ReservationStates.Ticketed.value,
ReservationStates.Nascent.value]

resource_type = ["VM"]

# Get the Active Slivers from CF
Expand Down

0 comments on commit 2e5ea0a

Please sign in to comment.