From 44db2b416ea4d6b040374ed413fe34c49ee6fd1c Mon Sep 17 00:00:00 2001 From: Sukun Date: Wed, 27 Sep 2023 17:23:50 +0530 Subject: [PATCH] interop: fix redis env var (#2585) --- test-plans/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test-plans/README.md b/test-plans/README.md index 1d180aacd..d5d7bfb6c 100644 --- a/test-plans/README.md +++ b/test-plans/README.md @@ -10,10 +10,10 @@ can dial/listen for ourselves we can do the following: 1. Start redis (needed by the tests): `docker run --rm -it -p 6379:6379 redis/redis-stack`. -2. In one terminal run the dialer: `REDIS_ADDR=localhost:6379 ip="0.0.0.0" +2. In one terminal run the dialer: `redis_addr=localhost:6379 ip="0.0.0.0" transport=quic-v1 security=quic muxer=quic is_dialer="true" go run ./cmd/ping` -3. In another terminal, run the listener: `REDIS_ADDR=localhost:6379 +3. In another terminal, run the listener: `redis_addr=localhost:6379 ip="0.0.0.0" transport=quic-v1 security=quic muxer=quic is_dialer="false" go run ./cmd/ping`