readable-name-review
{{ resolvedDiscussionCount }}/{{ discussionCount }} {{ resolvedCountText }} resolved
-
320 320 321 321 if self.is_ready: 322 322 return True 323 if self.base and not self.base.is_ready: 324 raise Exception("Base image is not ready.") -
Owner
humanize
-
-
440 442 disk = Disk.create(datastore=self.datastore, 441 443 base=new_base, 442 444 name=self.name, size=self.size, 443 type=new_type) 445 type=new_type, dev_num=self.dev_num) -
Owner
is this related?
-
-
457 459 AbortableAsyncResult(remote.id).abort() 458 460 disk.destroy() 459 461 raise Exception("Save as aborted by use.") 462 disk.is_ready = True 463 disk.save() -
Owner
is this related?
-
-
320 320 321 321 if self.is_ready: 322 322 return True 323 if self.base and not self.base.is_ready: -
Owner
if this wasn't saved till now, all the old templates will become useless. could add a datamigration which sets it to true for all existing disks
-