From 0415382f9ef0ffcfe754285c634f4b1c06e1fd9d Mon Sep 17 00:00:00 2001 From: ryan-crabbe-berri Date: Sat, 19 Sep 2026 13:45:11 -0700 Subject: [PATCH] fix(proxy): word the config step so it also fits a config that already reads the environment --- litellm/proxy/auth/master_key_boot_check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litellm/proxy/auth/master_key_boot_check.py b/litellm/proxy/auth/master_key_boot_check.py index 725798c5bb3..0ad63fd2e19 100644 --- a/litellm/proxy/auth/master_key_boot_check.py +++ b/litellm/proxy/auth/master_key_boot_check.py @@ -211,7 +211,7 @@ def _fix_steps(source: MasterKeySource) -> str: match source: case ConfigFileSource(): return ( - f"1. Make {_config_label(source)} read the key from the environment:\n" + f"1. Make sure {_config_label(source)} reads the key from the environment:\n" f" general_settings:\n {MASTER_KEY_SETTING}: os.environ/{MASTER_KEY_ENV_VAR}\n" f"2. {_SAVE_KEY_STEP}" )