Skip to content

Commit 9d39ed8

Browse files
authored
Make format bot happy
1 parent fe43010 commit 9d39ed8

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

toys/KestrelRedisServer/RedisConnectionHandler.cs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ public override Task OnConnectedAsync(ConnectionContext connection)
1414
node = null;
1515
}
1616

17-
return server.RunClientAsync(connection.Transport, node: node).ContinueWith(
18-
t =>
17+
return server.RunClientAsync(connection.Transport, node: node)
18+
.ContinueWith(t =>
1919
{
2020
// ensure any exceptions are observed
2121
var ex = t.Exception;
@@ -24,7 +24,8 @@ public override Task OnConnectedAsync(ConnectionContext connection)
2424
Debug.WriteLine(ex.Message);
2525
GC.KeepAlive(ex);
2626
}
27-
}, TaskContinuationOptions.OnlyOnFaulted);
27+
},
28+
TaskContinuationOptions.OnlyOnFaulted);
2829
}
2930
}
3031
}

0 commit comments

Comments
 (0)