From 2d5b82e88453c8d5264601f3e717e2b91e732c57 Mon Sep 17 00:00:00 2001 From: Brian Curtin Date: Wed, 20 Jul 2016 17:26:48 -0400 Subject: [PATCH] Fix test_limits functional test failure Change d7b393d44902f514762bda882d38cfe216ac7526 introduced a failure to the functional tests. The Limits.get method override didn't get the requires_id argument added. This change adds it and allows the tests to pass. Change-Id: I3d8c5e77d73b76fdf288eabfecfb8d6104a3887e --- openstack/compute/v2/limits.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openstack/compute/v2/limits.py b/openstack/compute/v2/limits.py index 7d62fea7..0a05f096 100644 --- a/openstack/compute/v2/limits.py +++ b/openstack/compute/v2/limits.py @@ -76,7 +76,7 @@ class Limits(resource2.Resource): absolute = resource2.Body("absolute", type=AbsoluteLimits) rate = resource2.Body("rate", type=list) - def get(self, session): + def get(self, session, requires_id=False): """Get the Limits resource. :param session: The session to use for making this request.