summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2014-10-14 17:04:45 +0000
committerGerrit Code Review <review@openstack.org>2014-10-14 17:04:45 +0000
commitc3666cb0dc6a14090bdbdd546599f59fc59fa543 (patch)
tree9de7310fb2e48ce054f811a630fd3360b0b7d08e
parent9cce0bfdb713c2b975b289d90de6d57b68ca3854 (diff)
parent234c9e6d66c867e87f6e0eb8b0fa84240f6f8c4a (diff)
downloadneutron-c3666cb0dc6a14090bdbdd546599f59fc59fa543.tar.gz
Merge "Forbid update of HA property of routers" into proposed/juno
-rw-r--r--neutron/extensions/l3_ext_ha_mode.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/neutron/extensions/l3_ext_ha_mode.py b/neutron/extensions/l3_ext_ha_mode.py
index f8487bb5b9..115a8db814 100644
--- a/neutron/extensions/l3_ext_ha_mode.py
+++ b/neutron/extensions/l3_ext_ha_mode.py
@@ -21,7 +21,7 @@ from neutron.common import exceptions
HA_INFO = 'ha'
EXTENDED_ATTRIBUTES_2_0 = {
'routers': {
- HA_INFO: {'allow_post': True, 'allow_put': True,
+ HA_INFO: {'allow_post': True, 'allow_put': False,
'default': attributes.ATTR_NOT_SPECIFIED, 'is_visible': True,
'enforce_policy': True,
'convert_to': attributes.convert_to_boolean_if_not_none}