From d2bf84a45dd57354dd53ff0b2a9d77eb2069516e Mon Sep 17 00:00:00 2001 From: Omar Trigui Date: Wed, 3 Dec 2025 03:46:43 +0100 Subject: [PATCH] fix(storage.md): correct redis endpoint format (#2082) ## Fix Redis URL typo in documentation Removed duplicate port number in Redis configuration example. --- docs/content/configuration/storage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/configuration/storage.md b/docs/content/configuration/storage.md index b98e58dc..e66be583 100644 --- a/docs/content/configuration/storage.md +++ b/docs/content/configuration/storage.md @@ -455,7 +455,7 @@ supported: # Endpoint is the redis endpoint for the single flight mechanism # Env override: ATHENS_REDIS_ENDPOINT # Note, if TLS is required use rediss:// instead. - Endpoint = "redis://user:password@127.0.0.1:6379:6379/0?protocol=3" + Endpoint = "redis://user:password@127.0.0.1:6379/0?protocol=3" If the redis url is invalid or cannot be parsed, Athens will fall back to treating `Endpoint` as if it were a normal `host:port` pair. If a password is supplied in the redis url, in addition to being provided in the `Password`