Skip to content

Commit 8e4ea91

Browse files
committed
use correct redis container
1 parent 7971f01 commit 8e4ea91

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test-e2e.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Wait for services to be ready
3636
run: |
3737
echo "Waiting for Redis to be ready..."
38-
timeout 30 bash -c 'until docker exec redis-stack redis-cli ping 2>/dev/null; do sleep 1; done'
38+
timeout 30 bash -c 'until docker exec redis-standalone redis-cli ping 2>/dev/null; do sleep 1; done'
3939
echo "Waiting for cae-resp-proxy to be ready..."
4040
timeout 30 bash -c 'until curl -s http://localhost:18100/stats > /dev/null; do sleep 1; done'
4141
echo "All services are ready!"
@@ -55,7 +55,7 @@ jobs:
5555
if: failure()
5656
run: |
5757
echo "=== Redis logs ==="
58-
docker logs redis-stack 2>&1 | tail -100
58+
docker logs redis-standalone 2>&1 | tail -100
5959
echo "=== cae-resp-proxy logs ==="
6060
docker logs cae-resp-proxy 2>&1 | tail -100
6161
echo "=== proxy-fault-injector logs ==="

0 commit comments

Comments
 (0)