From 19cca233b0d02132724d5a0c4f738aa1a989255d Mon Sep 17 00:00:00 2001 From: Mohamed Larabi Date: Wed, 3 Jul 2013 15:01:05 +0200 Subject: [PATCH] fix AM urn format in GetVersion --- sfa/managers/aggregate_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sfa/managers/aggregate_manager.py b/sfa/managers/aggregate_manager.py index fe6b07b4..c23ee951 100644 --- a/sfa/managers/aggregate_manager.py +++ b/sfa/managers/aggregate_manager.py @@ -11,7 +11,7 @@ class AggregateManager: # essentially a union of the core version, the generic version (this code) and # whatever the driver needs to expose def GetVersion(self, api, options): - xrn=Xrn(api.hrn) + xrn=Xrn(api.hrn, , type='authority+am') version = version_core() geni_api_versions = ApiVersions().get_versions() geni_api_versions['2'] = 'http://%s:%s' % (api.config.SFA_AGGREGATE_HOST, api.config.SFA_AGGREGATE_PORT) -- 2.43.0