Commit 6f91df1b authored by Marc Gravell's avatar Marc Gravell

Merge branch 'master' of git@github.com:StackExchange/StackExchange.Redis.git

parents 265fe434 f159010d
......@@ -184,7 +184,7 @@ public CommandMap CommandMap
/// <summary>
/// Specifies the time in milliseconds that should be allowed for connection
/// </summary>
public int ConnectTimeout { get { return connectTimeout ?? SyncTimeout; } set { connectTimeout = value; } }
public int ConnectTimeout { get { return connectTimeout.GetValueOrDefault(5000); } set { connectTimeout = value; } }
/// <summary>
/// The server version to assume
......
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