Stop writing to deprecated columns for image data.

This commit is contained in:
Jake Moshenko 2015-09-17 15:23:33 -04:00
parent ad53bf5671
commit ce94931540
9 changed files with 13 additions and 39 deletions

View file

@ -19,10 +19,6 @@ class StoragePaths(object):
def image_path(self, storage_uuid):
return '{0}/{1}/'.format(self.shared_images, storage_uuid)
def image_json_path(self, storage_uuid):
base_path = self.image_path(storage_uuid)
return '{0}json'.format(base_path)
def image_layer_path(self, storage_uuid):
base_path = self.image_path(storage_uuid)
return '{0}layer'.format(base_path)