Merge pull request #97 from asadoughi/post_update_port_fix

Added port key to POST /ports (update) response
This commit is contained in:
Matt Dietz
2013-06-14 08:58:47 -07:00

View File

@@ -71,7 +71,7 @@ class QuarkPortsUpdateHandler(object):
api_response = self._plugin.post_update_port(request.context,
id,
body)
return serializer.serialize(api_response)
return serializer.serialize({"port": api_response})
class Ports_quark(object):