summaryrefslogtreecommitdiffstats
path: root/clover/tools/validate_rr.py
diff options
context:
space:
mode:
authorStephen Wong <stephen.kf.wong@gmail.com>2018-04-25 06:27:52 +0000
committerGerrit Code Review <gerrit@opnfv.org>2018-04-25 06:27:52 +0000
commit4be1d24ba88619d677f2a616239da6fa29bdb78f (patch)
tree0324bdf55fb08ec95fdd72b9d4c7c4cd2c0876fd /clover/tools/validate_rr.py
parentef270f1c391f5a1ef8b79291b725c8e09f5b17d1 (diff)
parent6c5d33ba097c7cce07487db5a6fa306cb0e9cc8f (diff)
Merge "Experimental commit for A-B testing with Clover Fraser release and on the SDC application"
Diffstat (limited to 'clover/tools/validate_rr.py')
-rw-r--r--clover/tools/validate_rr.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/clover/tools/validate_rr.py b/clover/tools/validate_rr.py
index aa1b211..fbda20e 100644
--- a/clover/tools/validate_rr.py
+++ b/clover/tools/validate_rr.py
@@ -14,10 +14,12 @@ from clover.tracing.tracing import Tracing
class ValidateWRR(object):
- def __init__(self, test_id, tracing_ip='localhost', tracing_port='31298'):
+ def __init__(self, test_id, tracing_ip='localhost', tracing_port='31298',
+ redis_ip='localhost'):
self._k8s_client = kube_client.KubeClient()
self._test_id = test_id
- self._tracing = Tracing(tracing_ip, tracing_port)
+ self._tracing = Tracing(tracing_ip, tracing_port,
+ redis_ip=redis_ip)
def check_pods_up(self, pod_list, namespace='default'):
for pod in pod_list: