summaryrefslogtreecommitdiffstats
path: root/clover/tools/validate_rr.py
diff options
context:
space:
mode:
authorStephen Wong <stephen.kf.wong@gmail.com>2018-04-18 16:27:59 -0700
committerStephen Wong <stephen.kf.wong@gmail.com>2018-04-23 23:27:19 -0700
commit6c5d33ba097c7cce07487db5a6fa306cb0e9cc8f (patch)
tree796b3f2bdee422fedf2d70d1120497b0c8036431 /clover/tools/validate_rr.py
parent867c4309a10df56eeb5098a78956e5d6951b8ba4 (diff)
Experimental commit for A-B testing with Clover Fraser release
and on the SDC application Change-Id: I6e1bd84a6d674a2c4c4484722b20415f5402a59c Signed-off-by: Stephen Wong <stephen.kf.wong@gmail.com>
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: