Commit f92a9379 authored by Nick Craver's avatar Nick Craver

Merge branch 'sentinel-breakfix' of...

Merge branch 'sentinel-breakfix' of https://github.com/StackExchange/StackExchange.Redis into sentinel-breakfix
parents f3d0c693 b3082ab3
...@@ -756,19 +756,19 @@ public partial interface IServer : IRedis ...@@ -756,19 +756,19 @@ public partial interface IServer : IRedis
/// Returns the ip and port numbers of all known Sentinels /// Returns the ip and port numbers of all known Sentinels
/// for the given service name. /// for the given service name.
/// </summary> /// </summary>
/// <param name="serviveName">the sentinel service name</param> /// <param name="serviceName">the sentinel service name</param>
/// <param name="flags"></param> /// <param name="flags"></param>
/// <returns>a list of the sentinel ips and ports</returns> /// <returns>a list of the sentinel ips and ports</returns>
EndPoint[] SentinelGetSentinelAddresses(string serviveName, CommandFlags flags = CommandFlags.None); EndPoint[] SentinelGetSentinelAddresses(string serviceName, CommandFlags flags = CommandFlags.None);
/// <summary> /// <summary>
/// Returns the ip and port numbers of all known Sentinels /// Returns the ip and port numbers of all known Sentinels
/// for the given service name. /// for the given service name.
/// </summary> /// </summary>
/// <param name="serviveName">the sentinel service name</param> /// <param name="serviceName">the sentinel service name</param>
/// <param name="flags"></param> /// <param name="flags"></param>
/// <returns>a list of the sentinel ips and ports</returns> /// <returns>a list of the sentinel ips and ports</returns>
Task<EndPoint[]> SentinelGetSentinelAddressesAsync(string serviveName, CommandFlags flags = CommandFlags.None); Task<EndPoint[]> SentinelGetSentinelAddressesAsync(string serviceName, CommandFlags flags = CommandFlags.None);
/// <summary> /// <summary>
/// Show the state and info of the specified master. /// Show the state and info of the specified master.
......
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