Skip to content

Commit 2e5ea0a

Browse files
committed
check all states other than Closed
1 parent df7f7b2 commit 2e5ea0a

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

tools/audit.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -269,8 +269,11 @@ def clean_sliver_inconsistencies(self):
269269
db_host=self.database_config[Constants.PROPERTY_CONF_DB_HOST],
270270
logger=self.logger)
271271

272-
states = [ReservationStates.Active.value, ReservationStates.ActiveTicketed.value,
273-
ReservationStates.Failed.value]
272+
states = [ReservationStates.Active.value,
273+
ReservationStates.ActiveTicketed.value,
274+
ReservationStates.Ticketed.value,
275+
ReservationStates.Nascent.value]
276+
274277
resource_type = ["VM"]
275278

276279
# Get the Active Slivers from CF

0 commit comments

Comments
 (0)