2012-02-23 16:40:52 +08:00
|
|
|
module Fog
|
|
|
|
module Compute
|
|
|
|
class OpenStack
|
|
|
|
class Real
|
|
|
|
|
|
|
|
def live_migrate_server(server_id, host, block_migration, disk_over_commit)
|
2012-02-26 17:26:23 +08:00
|
|
|
body = {
|
|
|
|
'os-migrateLive' => {
|
|
|
|
'host' => host,
|
|
|
|
'block_migration' => block_migration,
|
|
|
|
'disk_over_commit' => disk_over_commit,
|
|
|
|
}
|
|
|
|
}
|
2012-02-23 16:40:52 +08:00
|
|
|
server_action(server_id, body)
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
class Mock
|
|
|
|
|
|
|
|
def live_migrate_server(server_id, host, block_migration, disk_over_commit)
|
|
|
|
response = Excon::Response.new
|
|
|
|
response.status = 202
|
|
|
|
response
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|