From 775ce119b60f3224f6cbe4a8265fa622f6637cd0 Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Thu, 11 Jul 2024 10:01:36 -0700 Subject: [PATCH] test otel --- .circleci/config.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index c7145e93e..662792608 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -305,13 +305,15 @@ jobs: command: docker build -t my-app:latest -f Dockerfile.database . - run: name: Run Docker container + # intentionally give bad redis credentials here + # the OTEL test - should get this as a trace command: | docker run -d \ -p 4000:4000 \ -e DATABASE_URL=$PROXY_DATABASE_URL \ - -e REDIS_HOST=$REDIS_HOST \ - -e REDIS_PASSWORD=$REDIS_PASSWORD \ - -e REDIS_PORT=$REDIS_PORT \ + -e REDIS_HOST=bad-credentials \ + -e REDIS_PASSWORD=bad-credentials \ + -e REDIS_PORT=bad-credentials \ -e OPENAI_API_KEY=$OPENAI_API_KEY \ -e LITELLM_LICENSE=$LITELLM_LICENSE \ -e OTEL_EXPORTER="in_memory" \