diff --git a/Dockerfile b/Dockerfile index 208c3c15d..277df2a75 100644 --- a/Dockerfile +++ b/Dockerfile @@ -51,6 +51,7 @@ RUN pip install --no-cache-dir --find-links=/wheels/ -r requirements.txt \ && rm -f *.whl # if user has set os.environ['DATABASE_URL'] != None, run prisma generate +RUN echo "DATABASE_URL is set to: $DATABASE_URL" RUN if [ -n "$DATABASE_URL" ]; then \ echo "DATABASE_URL is set to: $DATABASE_URL"; \ prisma generate; \ diff --git a/litellm/tests/test_deployed_proxy_keygen.py b/litellm/tests/test_deployed_proxy_keygen.py index 661393eda..6b5d0617a 100644 --- a/litellm/tests/test_deployed_proxy_keygen.py +++ b/litellm/tests/test_deployed_proxy_keygen.py @@ -30,7 +30,7 @@ def test_add_new_key(): headers = {"Authorization": f"Bearer {token}"} - staging_endpoint = "https://litellm-litellm-pr-1366.up.railway.app" + staging_endpoint = "https://litellm-litellm-pr-1376.up.railway.app" # Your bearer token token = os.getenv("PROXY_MASTER_KEY")