X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=sfa%2Fmethods%2FStop.py;h=579a77d6d632c7fad298ca579cae4f3316a5cde7;hb=db88e8be755e4a4c17fcd65eec98ca420eff91a4;hp=61c928552fa5cee023cd97df558f1f71a833fdaa;hpb=f192b22b57987cb68b17a48105b5dd18dfa3608b;p=sfa.git diff --git a/sfa/methods/Stop.py b/sfa/methods/Stop.py index 61c92855..579a77d6 100644 --- a/sfa/methods/Stop.py +++ b/sfa/methods/Stop.py @@ -2,7 +2,7 @@ ### $URL: https://svn.planet-lab.org/svn/sfa/trunk/sfa/methods/stop_slice.py $ from sfa.util.faults import * -from sfa.util.namespace import * +from sfa.util.xrn import urn_to_hrn from sfa.util.method import Method from sfa.util.parameter import Parameter, Mixed from sfa.trust.auth import Auth @@ -29,13 +29,13 @@ class Stop(Method): def call(self, xrn, creds): hrn, type = urn_to_hrn(xrn) - valid_creds = self.api.auth.checkCredentials(creds, 'deletesliver', hrn) + valid_creds = self.api.auth.checkCredentials(creds, 'stopslice', hrn) #log the call origin_hrn = Credential(string=valid_creds[0]).get_gid_caller().get_hrn() self.api.logger.info("interface: %s\tcaller-hrn: %s\ttarget-hrn: %s\tmethod-name: %s"%(self.api.interface, origin_hrn, hrn, self.name)) manager = self.api.get_interface_manager() - manager.stop_slice(self.api, xrn, valid_creds) + manager.stop_slice(self.api, xrn, creds) return 1