From 42ddb00d2f91e0838f6c0dac801d01867778ccf3 Mon Sep 17 00:00:00 2001 From: yuneng Date: Tue, 22 Sep 2026 02:53:33 +0000 Subject: [PATCH] test(e2e): stop requiring LITELLM_SALT_KEY for the owned JWT gateway Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> --- tests/e2e/other/owned_jwt_gateway.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/other/owned_jwt_gateway.py b/tests/e2e/other/owned_jwt_gateway.py index 70807097312..1af348cac60 100644 --- a/tests/e2e/other/owned_jwt_gateway.py +++ b/tests/e2e/other/owned_jwt_gateway.py @@ -63,7 +63,7 @@ class OwnedJwtGateway: def owned_jwt_gateway( idp: Keycloak, directory: Path, cleanup: ExitStack, *, litellm_jwtauth: str, name: str ) -> OwnedJwtGateway: - for env_name in ("DATABASE_URL", "LITELLM_LICENSE", "LITELLM_SALT_KEY", "LITELLM_MASTER_KEY"): + for env_name in ("DATABASE_URL", "LITELLM_LICENSE", "LITELLM_MASTER_KEY"): assert os.environ.get(env_name), f"{env_name} is required for the owned JWT gateway" port: Final = available_port() base_url: Final = f"http://127.0.0.1:{port}"