diff options
Diffstat (limited to 'nova/api')
| -rw-r--r-- | nova/api/openstack/compute/servers.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/nova/api/openstack/compute/servers.py b/nova/api/openstack/compute/servers.py index ca446f24b..797c498b8 100644 --- a/nova/api/openstack/compute/servers.py +++ b/nova/api/openstack/compute/servers.py @@ -678,7 +678,9 @@ class Controller(wsgi.Controller): if min_count > max_count: min_count = max_count - auto_disk_config = server_dict.get('auto_disk_config') + auto_disk_config = False + if self.ext_mgr.is_loaded('OS-DCF'): + auto_disk_config = server_dict.get('auto_disk_config') scheduler_hints = {} if self.ext_mgr.is_loaded('os-scheduler-hints'): |
