migrate fixes
{{ resolvedDiscussionCount }}/{{ discussionCount }} {{ resolvedCountText }} resolved
-
-
-
Owner
+1
212 | 216 | with activity.sub_activity('shutdown_net'): |
213 | 217 | self.instance.shutdown_net() |
214 | 218 | |
215 | with activity.sub_activity('migrate_vm'): | |
216 | self.instance.migrate_vm(to_node=to_node, timeout=timeout) | |
219 | try: | |
220 | with activity.sub_activity('migrate_vm'): | |
221 | self.instance.migrate_vm(to_node=to_node, timeout=timeout) | |
222 | except Exception as e: | |
223 | if hasattr(e, 'libvirtError'): | |
224 | self.rollback(activity) | |
225 | raise | |
Please
register
or
sign in
to reply
|
mentioned in merge request !82 (merged)
+1