[Kimchi-devel] [PATCH] Bug fix: Update Kimchi URL while checking ISO stream support
Aline Manera
alinefm at linux.vnet.ibm.com
Fri Oct 30 18:09:00 UTC 2015
Using the wrong URL was blocking user to create Template using remote ISO files.
Signed-off-by: Aline Manera <alinefm at linux.vnet.ibm.com>
---
src/wok/plugins/kimchi/model/featuretests.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/wok/plugins/kimchi/model/featuretests.py b/src/wok/plugins/kimchi/model/featuretests.py
index 7c4e9ce..b889006 100644
--- a/src/wok/plugins/kimchi/model/featuretests.py
+++ b/src/wok/plugins/kimchi/model/featuretests.py
@@ -162,7 +162,7 @@ class FeatureTests(object):
def qemu_supports_iso_stream():
host = cherrypy.server.socket_host
port = cherrypy.server.socket_port
- cmd = "qemu-io -r http://%s:%d/images/icon-fedora.png \
+ cmd = "qemu-io -r http://%s:%d/plugins/kimchi/images/icon-fedora.png \
-c 'read -v 0 512'" % (host, port)
proc = subprocess.Popen(cmd, stdout=subprocess.PIPE,
stderr=subprocess.PIPE, shell=True)
--
2.1.0
More information about the Kimchi-devel
mailing list