Skip to content

Commit

Permalink
v0.6.5
Browse files Browse the repository at this point in the history
  • Loading branch information
2881099 committed Aug 13, 2022
1 parent fad8726 commit bb46b0e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/FreeRedis/FreeRedis.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<AssemblyName>FreeRedis</AssemblyName>
<PackageId>FreeRedis</PackageId>
<RootNamespace>FreeRedis</RootNamespace>
<Version>0.6.2</Version>
<Version>0.6.5</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageProjectUrl>https://github.com/2881099/FreeRedis</PackageProjectUrl>
<Description>FreeRedis is .NET redis client, supports cluster, sentinel, master-slave, pipeline, transaction and connection pool.</Description>
Expand Down
1 change: 1 addition & 0 deletions src/FreeRedis/Internal/DefaultRedisSocket.cs
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,7 @@ public void Connect()
if (endpointString != $"{_ip}:{_port}") endpointString = $"{_ip}:{_port} -> {endpointString}";
throw new TimeoutException($"Connect to redis-server({endpointString}) timeout");
}
localSocket.EndConnect(asyncResult);
_socket = localSocket;
_stream = new NetworkStream(Socket, true);
_socket.ReceiveTimeout = (int)ReceiveTimeout.TotalMilliseconds;
Expand Down

0 comments on commit bb46b0e

Please sign in to comment.