Displaying 1 result from an estimated 1 matches for "dst_conn".
Did you mean:
dns_conn
2009 May 28
0
[PATCH server] Use qpid for migration and add more debugging to taskomatic.
...# Sadly migrate with qpid is broken because it requires a connection between
# both nodes and currently that can't happen securely. For now we do it
# the old fashioned way..
- src_conn = Libvirt::open("qemu+tcp://" + src_node.hostname + "/system")
- dst_conn = Libvirt::open("qemu+tcp://" + dest_node.hostname + "/system")
- dom = src_conn.lookup_domain_by_uuid(vm.uuid)
- dom.migrate(dst_conn, Libvirt::Domain::MIGRATE_LIVE)
- src_conn.close
- dst_conn.close
+ src_uri = "qemu+tcp://" + src_node.hostna...