We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe43010 commit 9d39ed8Copy full SHA for 9d39ed8
1 file changed
toys/KestrelRedisServer/RedisConnectionHandler.cs
@@ -14,8 +14,8 @@ public override Task OnConnectedAsync(ConnectionContext connection)
14
node = null;
15
}
16
17
- return server.RunClientAsync(connection.Transport, node: node).ContinueWith(
18
- t =>
+ return server.RunClientAsync(connection.Transport, node: node)
+ .ContinueWith(t =>
19
{
20
// ensure any exceptions are observed
21
var ex = t.Exception;
@@ -24,7 +24,8 @@ public override Task OnConnectedAsync(ConnectionContext connection)
24
Debug.WriteLine(ex.Message);
25
GC.KeepAlive(ex);
26
27
- }, TaskContinuationOptions.OnlyOnFaulted);
+ },
28
+ TaskContinuationOptions.OnlyOnFaulted);
29
30
31
0 commit comments