You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In method ChannelOutboundBuffer.FailFlushed, the statement "this.Remove0(cause, notify)" appends some same text to variable cause.StackTrace in each loop, when this statement loops for many times, the variable cause.StackTrace reachs hundreds of lines.
we can fix this by change statement from "if (!this.Remove0(cause, notify))" to "if (!this.Remove0(new Exception("fail flush", cause), notify))".
The text was updated successfully, but these errors were encountered:
In method ChannelOutboundBuffer.FailFlushed, the statement "this.Remove0(cause, notify)" appends some same text to variable cause.StackTrace in each loop, when this statement loops for many times, the variable cause.StackTrace reachs hundreds of lines.
we can fix this by change statement from "if (!this.Remove0(cause, notify))" to "if (!this.Remove0(new Exception("fail flush", cause), notify))".
The text was updated successfully, but these errors were encountered: