From: Anil-Kumar Vengalil Date: Mon, 8 Jun 2009 12:51:37 +0000 (+0000) Subject: calling aggregate manager for slice start/stop operations X-Git-Tag: sfa-0.9-0@14641~338 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=023c25b9663d4b7d9caf1a5e962309756bc6f840;p=sfa.git calling aggregate manager for slice start/stop operations --- diff --git a/geni/util/slices.py b/geni/util/slices.py index 1ba2f955..b063eb76 100644 --- a/geni/util/slices.py +++ b/geni/util/slices.py @@ -268,9 +268,9 @@ class Slices(SimpleStorage): def start_slice_smgr(self, hrn): credential = self.api.getCredential() - aggregates = Aggregates() + aggregates = Aggregates(self.api) for aggregate in aggregates: - aggreegates[aggregate].start_slice(credential, hrn) + aggregates[aggregate].start_slice(credential, hrn) return 1 @@ -293,7 +293,7 @@ class Slices(SimpleStorage): def stop_slice_smgr(self, hrn): credential = self.api.getCredential() - aggregates = Aggregates() + aggregates = Aggregates(self.api) for aggregate in aggregates: - aggregate[aggregate].stop_slice(credential, hrn) + aggregates[aggregate].stop_slice(credential, hrn)