make sure to honor the xrn argument
authorTony Mack <tmack@cs.princeton.edu>
Tue, 17 Aug 2010 18:00:43 +0000 (18:00 +0000)
committerTony Mack <tmack@cs.princeton.edu>
Tue, 17 Aug 2010 18:00:43 +0000 (18:00 +0000)
sfa/methods/get_aggregates.py

index 0ed15f3..c960974 100644 (file)
@@ -30,5 +30,7 @@ class get_aggregates(Method):
     def call(self, cred, xrn = None):
         hrn, type = urn_to_hrn(xrn)
         self.api.auth.check(cred, 'list')
-        aggregates = Aggregates(self.api)
-        return aggregates.interfaces.values()
+        aggregates = Aggregates(self.api).interfaces.values()
+        if hrn:
+            aggregates = [agg for agg in aggregates if agg['hrn'] == hrn]
+        return aggregates