Commit f0c7a301 by Guba Sándor Committed by Őry Máté

storage: fixed is_ready flag usage

parent 7b191b30
......@@ -314,6 +314,8 @@ class Disk(AclBase, TimeStampedModel):
queue=queue_name
).get(timeout=timeout)
self.is_ready = True
self.save()
return True
@classmethod
......@@ -363,6 +365,7 @@ class Disk(AclBase, TimeStampedModel):
AbortableAsyncResult(remote.id).abort()
raise Exception("Download aborted by user.")
disk.size = size
disk.is_ready = True
disk.save()
return disk
......
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 sign in to comment