summaryrefslogtreecommitdiffstats
path: root/nova/api
diff options
context:
space:
mode:
authorJake Dahn <jake@ansolabs.com>2011-08-15 19:36:21 +0000
committerTarmac <>2011-08-15 19:36:21 +0000
commit22087f39641202635787d5e2a4d0bd527043afa3 (patch)
tree06f3e781009222009513f45e5c4ec25c17846b9c /nova/api
parent0f54002fb29a520a694858685018f07a36de3233 (diff)
parentfdb8c92739026e96ac52fc165d70c8f8c7594177 (diff)
This branch allows the standard inclusion of a body param which most http clients will send along with a POST request.
Diffstat (limited to 'nova/api')
-rw-r--r--nova/api/openstack/contrib/floating_ips.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/api/openstack/contrib/floating_ips.py b/nova/api/openstack/contrib/floating_ips.py
index c07bfdf09..768b9deb1 100644
--- a/nova/api/openstack/contrib/floating_ips.py
+++ b/nova/api/openstack/contrib/floating_ips.py
@@ -131,7 +131,7 @@ class FloatingIPController(object):
"floating_ip": floating_ip,
"fixed_ip": fixed_ip}}
- def disassociate(self, req, id):
+ def disassociate(self, req, id, body=None):
""" POST /floating_ips/{id}/disassociate """
context = req.environ['nova.context']
floating_ip = self.network_api.get_floating_ip(context, id)