Skip to content

Commit 0cff1f0

Browse files
committed
Some feedback
1 parent ecbad63 commit 0cff1f0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Servers/Kestrel/Core/src/Http3Limits.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public class Http3Limits
1616
/// <summary>
1717
/// Limits the size of the header compression table, in octets, the QPACK decoder on the server can use.
1818
/// <para>
19-
/// Value must be greater than 0, defaults to 0
19+
/// Value must be greater than 0, defaults to 0.
2020
/// </para>
2121
/// </summary>
2222
// TODO: Make public https://github.com/dotnet/aspnetcore/issues/26666

src/Servers/Kestrel/Transport.Quic/src/Internal/QuicConnectionListener.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public QuicConnectionListener(QuicTransportOptions options, IQuicTrace log, EndP
4444
quicListenerOptions.CertificateFilePath = options.CertificateFilePath;
4545
quicListenerOptions.PrivateKeyFilePath = options.PrivateKeyFilePath;
4646
quicListenerOptions.ListenEndPoint = endpoint as IPEndPoint;
47-
quicListenerOptions.IdleTimeout = TimeSpan.FromDays(1);
47+
quicListenerOptions.IdleTimeout = TimeSpan.FromMinutes(2);
4848

4949
_listener = new QuicListener(QuicImplementationProviders.MsQuic, quicListenerOptions);
5050
_listener.Start();

0 commit comments

Comments
 (0)