From 49b1d36e2ef6b731600d04ffe6c80966967f91cc Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Fri, 6 Feb 2009 13:06:02 +0000 Subject: [PATCH] QA: switch RAPI to https Since we by default now use SSL for RAPI, we need to switch the QA tests to SSL too. Reviewed-by: amishchenko --- qa/qa_rapi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/qa_rapi.py b/qa/qa_rapi.py index f4db021..ce0cfde 100644 --- a/qa/qa_rapi.py +++ b/qa/qa_rapi.py @@ -81,7 +81,7 @@ def _DoTests(uris): for uri, verify in uris: assert uri.startswith("/") - url = "http://%s:%s%s" % (host, port, uri) + url = "https://%s:%s%s" % (host, port, uri) print "Testing %s ..." % url -- 1.7.10.4