Merge "[Launch instance Fix] Fixes booting issue when booting from volume"

This commit is contained in:
Jenkins 2015-07-01 15:22:09 +00:00 committed by Gerrit Code Review
commit 849c3cc5d7
2 changed files with 2 additions and 1 deletions

View File

@ -474,6 +474,7 @@
'volume_size': finalSpec.vol_size
}
);
finalSpec.source_id = null;
}
}

View File

@ -405,7 +405,7 @@
{ 'net-id': 'private', 'v4-fixed-ip': '' }
];
expect(finalSpec.source_id).toBe('cirros');
expect(finalSpec.source_id).toBe(null);
expect(finalSpec.flavor_id).toBe('m1.tiny');
expect(finalSpec.nics).toEqual(finalNetworks);
expect(finalSpec.key_name).toBe('keypair1');