Snapshot container_format typo

Snapshot wasn't working live because container_format was being
specified as 'base' instead of 'bare'.

Change-Id: I4d1e55c3f9875d5da07d4586ca785fc900d64e63
This commit is contained in:
Eric Fried
2015-07-07 17:38:44 -05:00
parent 26f158ac90
commit 2c40cc3d72
2 changed files with 2 additions and 2 deletions

View File

@@ -48,7 +48,7 @@ class TestImage(test.TestCase):
'is_public': False,
'status': 'active',
'disk_format': 'raw',
'container_format': 'base',
'container_format': 'bare',
'properties': {
'image_location': 'snapshot',
'image_state': 'available',

View File

@@ -51,7 +51,7 @@ def snapshot_metadata(context, image_api, image_id, instance):
'is_public': False,
'status': 'active',
'disk_format': 'raw',
'container_format': 'base',
'container_format': 'bare',
'properties': {
'image_location': 'snapshot',
'image_state': 'available',