From 4ba652868de9efc5e7dcc393a9d78cd3d6ebb084 Mon Sep 17 00:00:00 2001 From: dandds Date: Wed, 4 Dec 2019 14:15:51 -0500 Subject: [PATCH] Fix Redis config in CI. Missed a few instances of the old connection string parameter in the CircleCI config. --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 8898a30d..1bb49bb3 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -195,7 +195,7 @@ jobs: docker run -d \ -e DISABLE_CRL_CHECK=true \ -e PGHOST=postgres \ - -e REDIS_URI=redis://redis:6379 \ + -e REDIS_HOST=redis:6379 \ -p 8000:8000 \ --network atat \ --name test-atat \ @@ -253,7 +253,7 @@ jobs: command: | docker run \ -e PGHOST=postgres \ - -e REDIS_URI=redis://redis:6379 \ + -e REDIS_HOST=redis:6379 \ --network atat \ atat:builder \ /bin/sh -c "pipenv install --dev && /bin/sh script/sync-crls && pipenv run pytest --no-cov tests/check_crl_parse.py"