X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;ds=sidebyside;f=sfa%2Fserver%2Fsfaapi.py;h=71aadfa7eab358f2962c75cb1b33b1d81aaaee1b;hb=713d58df0baa1f9739eec9bfa30ceb41d7149e23;hp=231fdeb20a44565667a8768859b07e650b969146;hpb=eb68b75aab46df9b87b755e6b179402e98fc164f;p=sfa.git diff --git a/sfa/server/sfaapi.py b/sfa/server/sfaapi.py index 231fdeb2..71aadfa7 100644 --- a/sfa/server/sfaapi.py +++ b/sfa/server/sfaapi.py @@ -28,7 +28,7 @@ class SfaApi(XmlrpcApi): augmented with the local cryptographic material and hrn It also has the notion of its own interface (a string describing - whether we run a registry, aggregate or slicemgr) and has + whether we run a registry, or aggregate) and has the notion of neighbour sfa services as defined in /etc/sfa/{aggregates,registries}.xml @@ -266,6 +266,6 @@ class SfaApi(XmlrpcApi): response """ # as of dec 13 2011 we only support API v2 - if self.interface.lower() in ['aggregate', 'slicemgr']: + if self.interface.lower() in ['aggregate']: result = self.prepare_response_am(result) return XmlrpcApi.prepare_response(self, result, method)