mirror of
https://github.com/retspen/webvirtcloud
synced 2024-12-24 15:15:22 +00:00
fix to prevent not opened connection close error
This commit is contained in:
parent
83c8eccde3
commit
f759dc6564
1 changed files with 3 additions and 1 deletions
|
@ -144,7 +144,10 @@ def migrate_instance(
|
|||
compress,
|
||||
postcopy,
|
||||
)
|
||||
finally:
|
||||
conn_migrate.close()
|
||||
|
||||
try:
|
||||
conn_new = wvmInstance(
|
||||
new_compute.hostname,
|
||||
new_compute.login,
|
||||
|
@ -156,7 +159,6 @@ def migrate_instance(
|
|||
if autostart:
|
||||
conn_new.set_autostart(1)
|
||||
finally:
|
||||
conn_migrate.close()
|
||||
conn_new.close()
|
||||
|
||||
instance.compute = new_compute
|
||||
|
|
Loading…
Reference in a new issue