X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=sfa%2Fmethods%2FListResources.py;h=6b1e785048c63ce09bddddd954866551bbe26816;hb=bb57cb30c7cfdddcf8e55fd7084e3cdaf67eaac4;hp=a12447f628851e337231b7d056362899bef570e9;hpb=2b3c0c7ebe7c55afb14e3ea3aed10f8b1abe01e7;p=sfa.git diff --git a/sfa/methods/ListResources.py b/sfa/methods/ListResources.py index a12447f6..6b1e7850 100644 --- a/sfa/methods/ListResources.py +++ b/sfa/methods/ListResources.py @@ -17,12 +17,11 @@ class ListResources(Method): accepts = [ Mixed(Parameter(str, "Credential string"), Parameter(type([str]), "List of credentials")), - Parameter(dict, "Options"), - Parameter(str, "call_id"), + Parameter(dict, "Options") ] returns = Parameter(str, "List of resources") - def call(self, creds, options, call_id=""): + def call(self, creds, options={}): self.api.logger.info("interface: %s\tmethod-name: %s" % (self.api.interface, self.name)) # get slice's hrn from options @@ -36,7 +35,7 @@ class ListResources(Method): origin_hrn = options.get('origin_hrn', None) if not origin_hrn: origin_hrn = Credential(string=valid_creds[0]).get_gid_caller().get_hrn() - rspec = self.api.manager.ListResources(self.api, creds, options, call_id) + rspec = self.api.manager.ListResources(self.api, creds, options) # filter rspec through sfatables if self.api.interface in ['aggregate']: