diff options
| author | Brian Waldon <brian.waldon@rackspace.com> | 2011-08-25 11:37:17 -0400 |
|---|---|---|
| committer | Brian Waldon <brian.waldon@rackspace.com> | 2011-08-25 11:37:17 -0400 |
| commit | d8da62dd6b30505bc700bafcd73f4f990cdab807 (patch) | |
| tree | fc08cb09bd1fd115f97dbd13e35b866cc7e59eb3 | |
| parent | ce413a5b5344a79d612e36c64ddbcb7bfb4ac98b (diff) | |
| download | nova-d8da62dd6b30505bc700bafcd73f4f990cdab807.tar.gz nova-d8da62dd6b30505bc700bafcd73f4f990cdab807.tar.xz nova-d8da62dd6b30505bc700bafcd73f4f990cdab807.zip | |
fixing bug
| -rw-r--r-- | nova/virt/xenapi/vmops.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/virt/xenapi/vmops.py b/nova/virt/xenapi/vmops.py index 64c106f47..e90022de3 100644 --- a/nova/virt/xenapi/vmops.py +++ b/nova/virt/xenapi/vmops.py @@ -241,7 +241,7 @@ class VMOps(object): # Alter the image before VM start for, e.g. network injection also # alter the image if there's metadata. - if FLAGS.flat_injected or instance['metadata']: + if FLAGS.flat_injected: VMHelper.preconfigure_instance(self._session, instance, first_vdi_ref, network_info) |
