Set can_set_mount_point default to False

Patch https://review.openstack.org/#/c/59229/ only changed the default
value in the local_settings.py example file. If the setting isn't defined,
it still defaults to True

Change-Id: Ia3525786e5eb9ec83b8057c1cb6158ab153adc59
Closes-Bug: #1255136
This commit is contained in:
Zhenguo Niu 2013-12-04 09:45:56 +08:00 committed by niu-zglinux
parent 78e4408ab2
commit efde505099
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ OPENSTACK_NEUTRON_NETWORK = {
}
OPENSTACK_HYPERVISOR_FEATURES = {
'can_set_mount_point': True,
'can_set_mount_point': False,
'can_set_password': True,
}