From 4229bacc80418e6c68821cf0701fb6fc987175da Mon Sep 17 00:00:00 2001 From: Joe Gordon Date: Mon, 9 Jul 2012 23:28:06 +0000 Subject: Fix spelling in docstrings Change-Id: I45b913e701c3902e16a73a99fff01c115f63c2a9 --- nova/compute/manager.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/nova/compute/manager.py b/nova/compute/manager.py index b3884dd11..6706f9238 100644 --- a/nova/compute/manager.py +++ b/nova/compute/manager.py @@ -1907,9 +1907,10 @@ class ComputeManager(manager.SchedulerDependentManager): def create_shared_storage_test_file(self, context): """Makes tmpfile under FLAGS.instance_path. - This method enables compute nodes to recognize that they mounts - same shared storage. (create|check|creanup)_shared_storage_test_file() - is a pair. + This method creates a temporary file that acts as an indicator to + other compute nodes that utilize the same shared storage as this node. + (create|check|cleanup)_shared_storage_test_file() are a set and should + be run together. :param context: security context :returns: tmpfile name(basename) @@ -1950,7 +1951,7 @@ class ComputeManager(manager.SchedulerDependentManager): os.remove(tmp_file) def get_instance_disk_info(self, context, instance_name): - """Getting infomation of instance's current disk. + """Get information about instance's current disk. Implementation nova.virt.libvirt.connection. -- cgit