From 41c56baf85ff7b538d983b90d7c8222cdd5b7c3a Mon Sep 17 00:00:00 2001 From: Tony Mack Date: Mon, 20 Aug 2012 15:26:04 -0400 Subject: [PATCH] SliverStatus renamed to status --- sfa/methods/SliverStatus.py | 4 ++-- sfa/planetlab/pldriver.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sfa/methods/SliverStatus.py b/sfa/methods/SliverStatus.py index deb79983..6935d016 100644 --- a/sfa/methods/SliverStatus.py +++ b/sfa/methods/SliverStatus.py @@ -3,7 +3,7 @@ from sfa.util.method import Method from sfa.storage.parameter import Parameter, Mixed -class SliverStatus(Method): +class Status(Method): """ Get the status of a sliver @@ -25,7 +25,7 @@ class SliverStatus(Method): self.api.logger.info("interface: %s\ttarget-hrn: %s\tmethod-name: %s"%(self.api.interface, hrn, self.name)) - status = self.api.manager.SliverStatus(self.api, hrn, valid_creds, options) + status = self.api.manager.Status(self.api, hrn, valid_creds, options) return status diff --git a/sfa/planetlab/pldriver.py b/sfa/planetlab/pldriver.py index 33b88049..8388ea2a 100644 --- a/sfa/planetlab/pldriver.py +++ b/sfa/planetlab/pldriver.py @@ -579,7 +579,7 @@ class PlDriver (Driver): def describe(self, creds, urns, options): return {} - def sliver_status (self, slice_urn, slice_hrn): + def status (self, slice_urn, slice_hrn): # find out where this slice is currently running slicename = hrn_to_pl_slicename(slice_hrn) -- 2.43.0