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
thrownewException("Http2OutpuProducer.ProcessDataWrites() observed an unexpected state where the streams output ended with data still remaining in the pipe.");
385
+
ThrowUnexpectedState();
386
386
}
387
387
388
388
// Headers have already been written and there is no other content to write
_log.LogCritical(ex,"Http2OutpuProducer.ProcessDataWrites() observed an unexpected exception.");
405
+
_log.LogCritical(ex,nameof(Http2OutputProducer)+"."+nameof(ProcessDataWrites)+" observed an unexpected exception.");
406
406
}
407
407
408
408
_dataPipe.Reader.Complete();
409
409
410
410
returnflushResult;
411
+
412
+
staticvoidThrowUnexpectedState()
413
+
{
414
+
thrownewInvalidOperationException(nameof(Http2OutputProducer)+"."+nameof(ProcessDataWrites)+" observed an unexpected state where the streams output ended with data still remaining in the pipe.");
0 commit comments