~ubuntu-branches/ubuntu/quantal/nova/quantal-proposed

« back to all changes in this revision

Viewing changes to nova/virt/driver.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2011-12-09 14:24:07 UTC
  • mto: This revision was merged to the branch mainline in revision 55.
  • Revision ID: package-import@ubuntu.com-20111209142407-fviz6p5dnictpxsr
Tags: upstream-2012.1~e2~20111208.11721
ImportĀ upstreamĀ versionĀ 2012.1~e2~20111208.11721

Show diffs side-by-side

added added

removed removed

Lines of Context:
236
236
        """
237
237
        raise NotImplementedError()
238
238
 
239
 
    def migrate_disk_and_power_off(self, context, instance, dest):
 
239
    def migrate_disk_and_power_off(self, context, instance, dest,
 
240
                                   instance_type):
240
241
        """
241
242
        Transfers the disk of a running instance in multiple phases, turning
242
243
        off the instance before the end.
296
297
        # TODO(Vek): Need to pass context in for access to auth_token
297
298
        raise NotImplementedError()
298
299
 
299
 
    def rescue(self, context, instance, network_info):
 
300
    def rescue(self, context, instance, network_info, image_meta):
300
301
        """Rescue the specified instance"""
301
302
        raise NotImplementedError()
302
303