File tree 1 file changed +3
-3
lines changed
src/Servers/Kestrel/Core/src/Internal/Http2
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -125,8 +125,8 @@ public Http2Connection(HttpConnectionContext context)
125
125
126
126
_scheduleInline = context . ServiceContext . Scheduler == PipeScheduler . Inline ;
127
127
128
- _inputTask = CopyPipe ( _context . Transport . Input , _input . Writer ) ;
129
- _outputTask = CopyPipe ( _output . Reader , _context . Transport . Output ) ;
128
+ _inputTask = CopyPipeAsync ( _context . Transport . Input , _input . Writer ) ;
129
+ _outputTask = CopyPipeAsync ( _output . Reader , _context . Transport . Output ) ;
130
130
}
131
131
132
132
public string ConnectionId => _context . ConnectionId ;
@@ -1694,7 +1694,7 @@ private PipeOptions GetOutputPipeOptions()
1694
1694
useSynchronizationContext : false ) ;
1695
1695
}
1696
1696
1697
- private async Task CopyPipe ( PipeReader reader , PipeWriter writer )
1697
+ private async Task CopyPipeAsync ( PipeReader reader , PipeWriter writer )
1698
1698
{
1699
1699
Exception ? error = null ;
1700
1700
try
You can’t perform that action at this time.
0 commit comments