diff options
| author | Jake Dahn <jake@ansolabs.com> | 2011-08-15 11:55:53 -0700 |
|---|---|---|
| committer | Jake Dahn <jake@markupisart.com> | 2011-08-15 11:55:53 -0700 |
| commit | bc7892f698fbfc21f8d242f52e012d9165e46de7 (patch) | |
| tree | bffcc77b09d9c96c67b6ecc3a9fe940065639c64 /nova/api | |
| parent | 2ed3b12cc8da82304cef88dde64631b6348ee60e (diff) | |
| download | nova-bc7892f698fbfc21f8d242f52e012d9165e46de7.tar.gz nova-bc7892f698fbfc21f8d242f52e012d9165e46de7.tar.xz nova-bc7892f698fbfc21f8d242f52e012d9165e46de7.zip | |
Adding 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.py | 2 |
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..121a1d4a0 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): """ POST /floating_ips/{id}/disassociate """ context = req.environ['nova.context'] floating_ip = self.network_api.get_floating_ip(context, id) |
