diff options
| author | Joe Gordon <jogo@cloudscaling.com> | 2012-07-09 23:28:06 +0000 |
|---|---|---|
| committer | Joe Gordon <jogo@cloudscaling.com> | 2012-07-13 19:29:19 +0000 |
| commit | 4229bacc80418e6c68821cf0701fb6fc987175da (patch) | |
| tree | f4e650bd80fcdb8cba676592f905979b74cf11cd | |
| parent | 59f0d884a965f7e2e8745469dc1c0c5ad43663c0 (diff) | |
| download | nova-4229bacc80418e6c68821cf0701fb6fc987175da.tar.gz nova-4229bacc80418e6c68821cf0701fb6fc987175da.tar.xz nova-4229bacc80418e6c68821cf0701fb6fc987175da.zip | |
Fix spelling in docstrings
Change-Id: I45b913e701c3902e16a73a99fff01c115f63c2a9
| -rw-r--r-- | nova/compute/manager.py | 9 |
1 files 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. |
