From 5452763eb5e88303eff84ff3dba105eb1f470285 Mon Sep 17 00:00:00 2001 From: Tony Mack Date: Mon, 28 Nov 2011 14:24:16 -0500 Subject: [PATCH] slicemgr also supports GENI AM API v2 --- sfa/server/sfaapi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sfa/server/sfaapi.py b/sfa/server/sfaapi.py index faf62afd..9afe9b4f 100644 --- a/sfa/server/sfaapi.py +++ b/sfa/server/sfaapi.py @@ -246,7 +246,7 @@ class SfaApi (XmlrpcApi): Converts the specified result into a standard GENI compliant response """ - if self.interface.lower() == 'aggregate': + if self.interface.lower() in ['aggregate', 'slicemgr']: if hasattr(self.config, 'SFA_AGGREGATE_API_VERSION') and \ self.config.SFA_AGGREGATE_API_VERSION == 2: result = self.prepare_response_v2_am(result) -- 2.47.0