Increase the default value of TCP_STREAM_CHANNEL_TIMEOUT_MS to 10000

This commit is contained in:
M. Mert Yildiran 2021-09-14 16:18:26 +03:00
parent dfdf359e2e
commit 3dec786553
No known key found for this signature in database
GPG Key ID: D42ADB236521BF7A

View File

@ -15,7 +15,7 @@ const (
TcpStreamChannelTimeoutMsEnvVarName = "TCP_STREAM_CHANNEL_TIMEOUT_MS" TcpStreamChannelTimeoutMsEnvVarName = "TCP_STREAM_CHANNEL_TIMEOUT_MS"
MaxBufferedPagesTotalDefaultValue = 5000 MaxBufferedPagesTotalDefaultValue = 5000
MaxBufferedPagesPerConnectionDefaultValue = 5000 MaxBufferedPagesPerConnectionDefaultValue = 5000
TcpStreamChannelTimeoutMsDefaultValue = 5000 TcpStreamChannelTimeoutMsDefaultValue = 10000
) )
type globalSettings struct { type globalSettings struct {