diff --git a/zunclient/v1/containers.py b/zunclient/v1/containers.py index be1ef2b8..a87baa71 100644 --- a/zunclient/v1/containers.py +++ b/zunclient/v1/containers.py @@ -103,7 +103,7 @@ class ContainerManager(base.Manager): def delete(self, id): return self._delete(self._path(id)) - def _action(self, id, action, method='PUT', qparams=None, **kwargs): + def _action(self, id, action, method='POST', qparams=None, **kwargs): if qparams: action = "%s?%s" % (action, parse.urlencode(qparams))