From 200aeae76c54aa72c6eb76bae1657a62efd05308 Mon Sep 17 00:00:00 2001 From: Zhiteng Huang <zhithuang@ebaysf.com> Date: Thu, 15 Jan 2015 10:56:27 +0800 Subject: [PATCH] Remove commented code in cinderclient/v1/volumes.py migrate_volume_completion() function in Volume class was commented out when it was added. It hasn't been changed since then. This change remove it. Change-Id: Iad8c88e20268265f9063e2faa2a21514439150ad --- cinderclient/v1/volumes.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/cinderclient/v1/volumes.py b/cinderclient/v1/volumes.py index 37a4b88d1..ad212f79b 100644 --- a/cinderclient/v1/volumes.py +++ b/cinderclient/v1/volumes.py @@ -118,11 +118,6 @@ class Volume(base.Resource): """Migrate the volume to a new host.""" self.manager.migrate_volume(self, host, force_host_copy) -# def migrate_volume_completion(self, old_volume, new_volume, error): -# """Complete the migration of the volume.""" -# self.manager.migrate_volume_completion(self, old_volume, -# new_volume, error) - def update_all_metadata(self, metadata): """Update all metadata of this volume.""" return self.manager.update_all_metadata(self, metadata)