Commit eca9bff4 authored by Rafael Monnerat's avatar Rafael Monnerat

slapos_accounting: Skip garbage from the report

   If partition is None, it means the computer was reformated and there is garbage on it. It is meaningless to process this.
parent 0b88bf41
Pipeline #17759 failed with stage
in 0 seconds
......@@ -48,7 +48,7 @@ else:
portal_type="Compute Partition",
validation_state="validated")
if partition.getSlapState() != 'busy':
if partition is None or partition.getSlapState() != 'busy':
continue
assert partition.getSlapState() == 'busy', "partition %s is not busy" % reference
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment