summaryrefslogtreecommitdiffstats
path: root/nova/scheduler
diff options
context:
space:
mode:
authorJoe Gordon <jogo@cloudscaling.com>2011-11-09 13:01:35 -0800
committerJoe Gordon <jogo@cloudscaling.com>2011-11-09 19:57:44 -0800
commitd7b9ee35569482be69918ba8ed448688568a7def (patch)
tree0195bd8bebfd826fa7ce398f3715c1681bf39e9f /nova/scheduler
parentbcb590cba55d3d7318f2870cddc1cf507652e2a2 (diff)
More spelling fixes inside of nova
Change-Id: I79daf7519c99cc363ac7175c85912298f273da8a
Diffstat (limited to 'nova/scheduler')
-rw-r--r--nova/scheduler/api.py2
-rw-r--r--nova/scheduler/driver.py4
-rw-r--r--nova/scheduler/manager.py2
3 files changed, 4 insertions, 4 deletions
diff --git a/nova/scheduler/api.py b/nova/scheduler/api.py
index 41cdb80a3..dae5b1d8f 100644
--- a/nova/scheduler/api.py
+++ b/nova/scheduler/api.py
@@ -60,7 +60,7 @@ def get_host_list(context):
def get_zone_list(context):
- """Return a list of zones assoicated with this zone."""
+ """Return a list of zones associated with this zone."""
items = _call_scheduler('get_zone_list', context)
for item in items:
item['api_url'] = item['api_url'].replace('\\/', '/')
diff --git a/nova/scheduler/driver.py b/nova/scheduler/driver.py
index b276b11df..5041c3346 100644
--- a/nova/scheduler/driver.py
+++ b/nova/scheduler/driver.py
@@ -36,7 +36,7 @@ from nova.api.ec2 import ec2utils
FLAGS = flags.FLAGS
LOG = logging.getLogger('nova.scheduler.driver')
flags.DEFINE_integer('service_down_time', 60,
- 'maximum time since last checkin for up service')
+ 'maximum time since last check-in for up service')
flags.DECLARE('instances_path', 'nova.compute.manager')
@@ -116,7 +116,7 @@ def encode_instance(instance, local=True):
class Scheduler(object):
- """The base class that all Scheduler clases should inherit from."""
+ """The base class that all Scheduler classes should inherit from."""
def __init__(self):
self.zone_manager = None
diff --git a/nova/scheduler/manager.py b/nova/scheduler/manager.py
index f5a268adb..0f973341e 100644
--- a/nova/scheduler/manager.py
+++ b/nova/scheduler/manager.py
@@ -66,7 +66,7 @@ class SchedulerManager(manager.Manager):
return self.zone_manager.get_zone_list()
def get_zone_capabilities(self, context=None):
- """Get the normalized set of capabilites for this zone."""
+ """Get the normalized set of capabilities for this zone."""
return self.zone_manager.get_zone_capabilities(context)
def update_service_capabilities(self, context=None, service_name=None,