Unverified Commit 69cbf695 authored by Eric J. Smith's avatar Eric J. Smith Committed by GitHub

Add auth to commandmap for sentinel servers (#1428)

Sentinel servers can be set to require auth like regular servers.
parent 34e9ace9
......@@ -72,7 +72,7 @@ internal CommandMap(CommandBytes[] map)
/// <remarks>https://redis.io/topics/sentinel</remarks>
public static CommandMap Sentinel { get; } = Create(new HashSet<string> {
// see https://redis.io/topics/sentinel
"ping", "info", "sentinel", "subscribe", "shutdown", "psubscribe", "unsubscribe", "punsubscribe" }, true);
"auth", "ping", "info", "sentinel", "subscribe", "shutdown", "psubscribe", "unsubscribe", "punsubscribe" }, true);
/// <summary>
/// Create a new CommandMap, customizing some commands
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment