dc258c8290
3b769643-dont-add-URI-into-params-for-tunneled-migration.patch 6dfc4de1-add-support-for-parsing-formatting-SR-IOV-VFs.patch 083dfcc8-Show-details-about-the-network-of-SR-IOV-VF-pool.patch - Add Recommends: python3-virt-bootstrap Change 'Requires: libvirt-python' to 'Requires: python-libvirt-python' virt-manager.spec - Add corrections to sle15 detection (bsc#1054986) OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=372
23 lines
774 B
Diff
23 lines
774 B
Diff
Subject: domain: don't add URI into params for tunneled migration
|
|
From: Pavel Hrdina phrdina@redhat.com Tue Oct 3 12:24:39 2017 +0200
|
|
Date: Tue Oct 3 12:24:39 2017 +0200:
|
|
Git: 3b769643657f906dc2b53c568d7fe748155d9b2b
|
|
|
|
Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1456185
|
|
|
|
Signed-off-by: Pavel Hrdina <phrdina@redhat.com>
|
|
|
|
diff --git a/virtManager/domain.py b/virtManager/domain.py
|
|
index 6fb54bc..724f83f 100644
|
|
--- a/virtManager/domain.py
|
|
+++ b/virtManager/domain.py
|
|
@@ -1596,7 +1596,7 @@ class vmmDomain(vmmLibvirtObject):
|
|
start_job_progress_thread(self, meter, _("Migrating domain"))
|
|
|
|
params = {}
|
|
- if dest_uri:
|
|
+ if dest_uri and not tunnel:
|
|
params[libvirt.VIR_MIGRATE_PARAM_URI] = dest_uri
|
|
|
|
if tunnel:
|