From 5765b76d26e94610216b6d6a78cc00c4578a5c92 Mon Sep 17 00:00:00 2001 From: Andy Bavier Date: Tue, 5 Jul 2011 15:45:33 -0400 Subject: [PATCH] Only a single credential is being passed in to ListResources --- sfa/managers/aggregate_manager_eucalyptus.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sfa/managers/aggregate_manager_eucalyptus.py b/sfa/managers/aggregate_manager_eucalyptus.py index 1b6d1432..cbd7bba4 100644 --- a/sfa/managers/aggregate_manager_eucalyptus.py +++ b/sfa/managers/aggregate_manager_eucalyptus.py @@ -404,7 +404,8 @@ def ListResources(api, creds, options, call_id): # get hrn of the original caller origin_hrn = options.get('origin_hrn', None) if not origin_hrn: - origin_hrn = Credential(string=creds[0]).get_gid_caller().get_hrn() + origin_hrn = Credential(string=creds).get_gid_caller().get_hrn() + # origin_hrn = Credential(string=creds[0]).get_gid_caller().get_hrn() conn = getEucaConnection() -- 2.45.2