From 023c25b9663d4b7d9caf1a5e962309756bc6f840 Mon Sep 17 00:00:00 2001 From: Anil-Kumar Vengalil Date: Mon, 8 Jun 2009 12:51:37 +0000 Subject: [PATCH] calling aggregate manager for slice start/stop operations --- geni/util/slices.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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) -- 2.45.2