Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement IHttpResponseCompletionFeature.CompleteAsync for Kestrel HTTP/1.x #11195

Closed
Tratcher opened this issue Jun 13, 2019 · 15 comments
Closed
Labels
area-networking Includes servers, yarp, json patch, bedrock, websockets, http client factory, and http abstractions enhancement This issue represents an ask for new feature or an enhancement to an existing one feature-kestrel

Comments

@Tratcher
Copy link
Member

#11193 added IHttpResponseCompletionFeature.CompleteAsync for HTTP/2 gRPC scenarios, allowing the response to be completed without waiting for the request delegate to unwind.

There have been multiple asks for the same behavior for HTTP/1.1 chunked responses. Content-Length checks could also be done.

@Tratcher Tratcher added enhancement This issue represents an ask for new feature or an enhancement to an existing one cost: S feature-kestrel labels Jun 13, 2019
@analogrelay
Copy link
Contributor

My feeling is this won't make 3.0.

@JamesNK
Copy link
Member

JamesNK commented Dec 17, 2019

Was this done with #12328?

@Tratcher
Copy link
Member Author

Not necessarily, Http1 and Http2 have fairly different code paths. Give it a try? What's your interest?

@JamesNK
Copy link
Member

JamesNK commented Dec 17, 2019

gRPC-Web allows for gRPC over HTTP1/1. One of its features is deadlines, which will call CompleteAsync.

I have a functional test over HTTP/1.1 and I'm getting an odd result. Sometimes the HTTP request doesn't return any data when CompleteAsync is called. The client then errors with "The response ended prematurely."

@JamesNK
Copy link
Member

JamesNK commented Dec 17, 2019

Test logs (failure happens in the final request):

Test Name:  UnaryMethodDeadlineExceeded
Test FullName:  Grpc.AspNetCore.FunctionalTests.Grpc.AspNetCore.FunctionalTests.Web.Server.DeadlineTests(GrpcWeb,Http1).UnaryMethodDeadlineExceeded
Test Source:    C:\Development\Source\grpc-dotnet\test\FunctionalTests\Web\Server\DeadlineTests.cs : line 46
Test Outcome:   Failed
Test Duration:  0:00:00

Test Name:  UnaryMethodDeadlineExceeded
Test Outcome:   Failed
Result StackTrace:  
at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage request, CancellationToken cancellationToken)
   at System.Net.Http.HttpConnectionPool.SendWithNtConnectionAuthAsync(HttpConnection connection, HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken)
   at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken)
   at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
   at Grpc.Net.Client.Web.GrpcWebHandler.SendAsyncCore(HttpRequestMessage request, CancellationToken cancellationToken) in C:\Development\Source\grpc-dotnet\src\Grpc.Net.Client.Web\GrpcWebHandler.cs:line 117
   at System.Net.Http.HttpClient.FinishSendAsyncUnbuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts)
   at Grpc.Tests.Shared.TaskExtensions.TimeoutAfter[T](Task`1 task, TimeSpan timeout, String filePath, Int32 lineNumber) in C:\Development\Source\grpc-dotnet\test\Shared\TaskExtensions.cs:line 59
   at Grpc.AspNetCore.FunctionalTests.Web.Server.DeadlineTests.UnaryMethodDeadlineExceeded() in C:\Development\Source\grpc-dotnet\test\FunctionalTests\Web\Server\DeadlineTests.cs:line 104
   at NUnit.Framework.Internal.TaskAwaitAdapter.GenericAdapter`1.BlockUntilCompleted()
   at NUnit.Framework.Internal.MessagePumpStrategy.NoMessagePumpStrategy.WaitForCompletion(AwaitAdapter awaitable)
   at NUnit.Framework.Internal.AsyncToSyncAdapter.Await(Func`1 invoke)
   at NUnit.Framework.Internal.Commands.TestMethodCommand.RunTestMethod(TestExecutionContext context)
   at NUnit.Framework.Internal.Commands.TestMethodCommand.Execute(TestExecutionContext context)
   at NUnit.Framework.Internal.Commands.BeforeAndAfterTestCommand.<>c__DisplayClass1_0.<Execute>b__0()
   at NUnit.Framework.Internal.Commands.BeforeAndAfterTestCommand.RunTestMethodInThreadAbortSafeZone(TestExecutionContext context, Action action)
--IOException
   at System.Net.Http.HttpConnection.FillAsync()
   at System.Net.Http.HttpConnection.ReadNextResponseHeaderLineAsync(Boolean foldedHeadersAllowed)
   at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage request, CancellationToken cancellationToken)
Result Message: 
System.Net.Http.HttpRequestException : An error occurred while sending the request.
  ----> System.IO.IOException : The response ended prematurely.
Result StandardOutput:  
0.003s GrpcTestContext - Information: Starting DeadlineTests.UnaryMethodDeadlineExceeded
0.012s SERVER Grpc.AspNetCore.Server.Model.Internal.ServiceRouteBuilder - Debug: Discovering gRPC methods for FunctionalTestsWebsite.Infrastructure.DynamicService.
0.014s SERVER Grpc.AspNetCore.Server.Model.Internal.BinderServiceMethodProvider - Debug: Could not find bind method for FunctionalTestsWebsite.Infrastructure.DynamicService.
0.015s SERVER Grpc.AspNetCore.Server.Model.Internal.ServiceRouteBuilder - Debug: Added gRPC method 'WaitUntilDeadline' to service 'DynamicService'. Method type: 'Unary', route pattern: '/DynamicService/WaitUntilDeadline'.
0.115s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCC" accepted.
0.116s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCC" started.
0.134s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request starting HTTP/1.1 POST http://127.0.0.1:50040/DynamicService/WaitUntilDeadline application/grpc-web 
0.155s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: 4 candidate(s) found for the request path '/DynamicService/WaitUntilDeadline'
0.157s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - /DynamicService/WaitUntilDeadline' with route pattern '/DynamicService/WaitUntilDeadline' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.158s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented method for DynamicService' with route pattern 'DynamicService/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.158s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented service' with route pattern '{unimplementedService}/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.158s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint '{FirstSegment}/{SecondSegment}' with route pattern '{FirstSegment}/{SecondSegment}' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.158s SERVER Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware - Debug: Request matched endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
0.161s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Detected gRPC-Web request from content-type 'application/grpc-web'.
0.164s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executing endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
0.171s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Reading message.
0.171s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCC", Request id "0HLS2KJ507DCC:00000001": started reading request body.
0.175s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Deserializing 7 byte message to 'Greet.HelloRequest'.
0.178s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Received message.
0.179s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCC", Request id "0HLS2KJ507DCC:00000001": done reading request body.
0.223s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Request with timeout of 00:00:00.0500000 has exceeded its deadline.
0.227s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Sending gRPC-Web response with content-type 'application/grpc-web'.
0.232s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: IHttpResetFeature is not available so unable to cleanly reset response stream. Aborting response stream.
0.232s SERVER Microsoft.AspNetCore.Server.Kestrel - Information: Connection id "0HLS2KJ507DCC", Request id "0HLS2KJ507DCC:00000001": the application aborted the connection.
0.232s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DCC" sending FIN because: "The connection was aborted by the application."
0.232s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCC" disconnecting.
0.254s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCD" accepted.
0.255s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCD" started.
0.260s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request starting HTTP/1.1 POST http://127.0.0.1:50040/DynamicService/WaitUntilDeadline application/grpc-web 
0.264s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: 4 candidate(s) found for the request path '/DynamicService/WaitUntilDeadline'
0.264s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - /DynamicService/WaitUntilDeadline' with route pattern '/DynamicService/WaitUntilDeadline' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.264s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented method for DynamicService' with route pattern 'DynamicService/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.264s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented service' with route pattern '{unimplementedService}/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.264s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint '{FirstSegment}/{SecondSegment}' with route pattern '{FirstSegment}/{SecondSegment}' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.264s SERVER Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware - Debug: Request matched endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
0.264s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Detected gRPC-Web request from content-type 'application/grpc-web'.
0.265s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executing endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
0.265s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Reading message.
0.265s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCD", Request id "0HLS2KJ507DCD:00000001": started reading request body.
0.265s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Deserializing 7 byte message to 'Greet.HelloRequest'.
0.265s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Received message.
0.265s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCD", Request id "0HLS2KJ507DCD:00000001": done reading request body.
0.277s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Sending message.
0.280s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Serialized 'Greet.HelloReply' to 0 byte message.
0.281s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error sending message.
0.283s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error when executing service method 'WaitUntilDeadline'.
0.284s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executed endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
0.285s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request finished in 151.368ms 200 application/grpc-web
0.289s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCC" stopped.
0.327s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Request with timeout of 00:00:00.0500000 has exceeded its deadline.
0.327s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Sending gRPC-Web response with content-type 'application/grpc-web'.
0.327s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: IHttpResetFeature is not available so unable to cleanly reset response stream. Aborting response stream.
0.327s SERVER Microsoft.AspNetCore.Server.Kestrel - Information: Connection id "0HLS2KJ507DCD", Request id "0HLS2KJ507DCD:00000001": the application aborted the connection.
0.327s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DCD" sending FIN because: "The connection was aborted by the application."
0.327s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCD" disconnecting.
0.328s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DCD" reset.
0.328s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCE" accepted.
0.328s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCE" started.
0.329s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request starting HTTP/1.1 POST http://127.0.0.1:50040/DynamicService/WaitUntilDeadline application/grpc-web 
0.329s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: 4 candidate(s) found for the request path '/DynamicService/WaitUntilDeadline'
0.329s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - /DynamicService/WaitUntilDeadline' with route pattern '/DynamicService/WaitUntilDeadline' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.329s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented method for DynamicService' with route pattern 'DynamicService/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.329s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented service' with route pattern '{unimplementedService}/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.329s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint '{FirstSegment}/{SecondSegment}' with route pattern '{FirstSegment}/{SecondSegment}' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.329s SERVER Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware - Debug: Request matched endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
0.329s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Detected gRPC-Web request from content-type 'application/grpc-web'.
0.329s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executing endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
0.329s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Reading message.
0.329s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCE", Request id "0HLS2KJ507DCE:00000001": started reading request body.
0.329s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Deserializing 7 byte message to 'Greet.HelloRequest'.
0.329s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Received message.
0.329s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCE", Request id "0HLS2KJ507DCE:00000001": done reading request body.
0.389s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Request with timeout of 00:00:00.0500000 has exceeded its deadline.
0.389s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Sending gRPC-Web response with content-type 'application/grpc-web'.
0.389s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: IHttpResetFeature is not available so unable to cleanly reset response stream. Aborting response stream.
0.389s SERVER Microsoft.AspNetCore.Server.Kestrel - Information: Connection id "0HLS2KJ507DCE", Request id "0HLS2KJ507DCE:00000001": the application aborted the connection.
0.389s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DCE" sending FIN because: "The connection was aborted by the application."
0.390s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCF" accepted.
0.390s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCF" started.
0.390s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request starting HTTP/1.1 POST http://127.0.0.1:50040/DynamicService/WaitUntilDeadline application/grpc-web 
0.390s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: 4 candidate(s) found for the request path '/DynamicService/WaitUntilDeadline'
0.390s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - /DynamicService/WaitUntilDeadline' with route pattern '/DynamicService/WaitUntilDeadline' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.390s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented method for DynamicService' with route pattern 'DynamicService/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.390s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented service' with route pattern '{unimplementedService}/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.390s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint '{FirstSegment}/{SecondSegment}' with route pattern '{FirstSegment}/{SecondSegment}' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.390s SERVER Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware - Debug: Request matched endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
0.390s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Detected gRPC-Web request from content-type 'application/grpc-web'.
0.390s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executing endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
0.390s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Reading message.
0.390s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCF", Request id "0HLS2KJ507DCF:00000001": started reading request body.
0.390s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Deserializing 7 byte message to 'Greet.HelloRequest'.
0.390s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Received message.
0.390s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCF", Request id "0HLS2KJ507DCF:00000001": done reading request body.
0.391s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCE" disconnecting.
0.401s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Sending message.
0.401s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Serialized 'Greet.HelloReply' to 0 byte message.
0.401s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error sending message.
0.401s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error when executing service method 'WaitUntilDeadline'.
0.401s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executed endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
0.401s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request finished in 141.4597ms 200 application/grpc-web
0.401s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCD" stopped.
0.449s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Request with timeout of 00:00:00.0500000 has exceeded its deadline.
0.449s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Sending gRPC-Web response with content-type 'application/grpc-web'.
0.449s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: IHttpResetFeature is not available so unable to cleanly reset response stream. Aborting response stream.
0.449s SERVER Microsoft.AspNetCore.Server.Kestrel - Information: Connection id "0HLS2KJ507DCF", Request id "0HLS2KJ507DCF:00000001": the application aborted the connection.
0.449s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DCF" sending FIN because: "The connection was aborted by the application."
0.450s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCG" accepted.
0.450s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCG" started.
0.450s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request starting HTTP/1.1 POST http://127.0.0.1:50040/DynamicService/WaitUntilDeadline application/grpc-web 
0.450s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: 4 candidate(s) found for the request path '/DynamicService/WaitUntilDeadline'
0.450s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - /DynamicService/WaitUntilDeadline' with route pattern '/DynamicService/WaitUntilDeadline' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.450s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented method for DynamicService' with route pattern 'DynamicService/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.450s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented service' with route pattern '{unimplementedService}/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.450s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint '{FirstSegment}/{SecondSegment}' with route pattern '{FirstSegment}/{SecondSegment}' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.450s SERVER Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware - Debug: Request matched endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
0.450s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Detected gRPC-Web request from content-type 'application/grpc-web'.
0.450s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executing endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
0.450s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Reading message.
0.450s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCG", Request id "0HLS2KJ507DCG:00000001": started reading request body.
0.450s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Deserializing 7 byte message to 'Greet.HelloRequest'.
0.450s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Received message.
0.450s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCG", Request id "0HLS2KJ507DCG:00000001": done reading request body.
0.451s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCF" disconnecting.
0.464s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Sending message.
0.464s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Serialized 'Greet.HelloReply' to 0 byte message.
0.464s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error sending message.
0.464s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error when executing service method 'WaitUntilDeadline'.
0.464s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executed endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
0.464s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request finished in 135.5248ms 200 application/grpc-web
0.464s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCE" stopped.
0.513s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Sending message.
0.513s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Request with timeout of 00:00:00.0500000 has exceeded its deadline.
0.513s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Serialized 'Greet.HelloReply' to 0 byte message.
0.513s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Sending gRPC-Web response with content-type 'application/grpc-web'.
0.513s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: IHttpResetFeature is not available so unable to cleanly reset response stream. Aborting response stream.
0.513s SERVER Microsoft.AspNetCore.Server.Kestrel - Information: Connection id "0HLS2KJ507DCG", Request id "0HLS2KJ507DCG:00000001": the application aborted the connection.
0.513s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DCG" sending FIN because: "The connection was aborted by the application."
0.513s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error sending message.
0.513s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error when executing service method 'WaitUntilDeadline'.
0.513s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executed endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
0.513s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request finished in 123.1567ms 200 application/grpc-web
0.513s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCF" stopped.
0.514s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCH" accepted.
0.514s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCH" started.
0.514s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request starting HTTP/1.1 POST http://127.0.0.1:50040/DynamicService/WaitUntilDeadline application/grpc-web 
0.514s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: 4 candidate(s) found for the request path '/DynamicService/WaitUntilDeadline'
0.514s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - /DynamicService/WaitUntilDeadline' with route pattern '/DynamicService/WaitUntilDeadline' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.514s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented method for DynamicService' with route pattern 'DynamicService/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.514s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented service' with route pattern '{unimplementedService}/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.514s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint '{FirstSegment}/{SecondSegment}' with route pattern '{FirstSegment}/{SecondSegment}' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.514s SERVER Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware - Debug: Request matched endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
0.514s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Detected gRPC-Web request from content-type 'application/grpc-web'.
0.514s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executing endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
0.514s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Reading message.
0.514s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCH", Request id "0HLS2KJ507DCH:00000001": started reading request body.
0.514s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Deserializing 7 byte message to 'Greet.HelloRequest'.
0.514s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Received message.
0.514s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCH", Request id "0HLS2KJ507DCH:00000001": done reading request body.
0.515s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCG" disconnecting.
0.575s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Request with timeout of 00:00:00.0500000 has exceeded its deadline.
0.575s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Sending gRPC-Web response with content-type 'application/grpc-web'.
0.576s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: IHttpResetFeature is not available so unable to cleanly reset response stream. Aborting response stream.
0.576s SERVER Microsoft.AspNetCore.Server.Kestrel - Information: Connection id "0HLS2KJ507DCH", Request id "0HLS2KJ507DCH:00000001": the application aborted the connection.
0.576s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DCH" sending FIN because: "The connection was aborted by the application."
0.577s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCH" disconnecting.
0.580s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCI" accepted.
0.580s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCI" started.
0.581s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request starting HTTP/1.1 POST http://127.0.0.1:50040/DynamicService/WaitUntilDeadline application/grpc-web 
0.581s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: 4 candidate(s) found for the request path '/DynamicService/WaitUntilDeadline'
0.581s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - /DynamicService/WaitUntilDeadline' with route pattern '/DynamicService/WaitUntilDeadline' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.581s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented method for DynamicService' with route pattern 'DynamicService/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.581s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented service' with route pattern '{unimplementedService}/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.581s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint '{FirstSegment}/{SecondSegment}' with route pattern '{FirstSegment}/{SecondSegment}' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.581s SERVER Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware - Debug: Request matched endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
0.581s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Detected gRPC-Web request from content-type 'application/grpc-web'.
0.582s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executing endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
0.582s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Reading message.
0.582s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCI", Request id "0HLS2KJ507DCI:00000001": started reading request body.
0.582s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Deserializing 7 byte message to 'Greet.HelloRequest'.
0.582s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Received message.
0.582s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCI", Request id "0HLS2KJ507DCI:00000001": done reading request body.
0.593s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Sending message.
0.593s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Serialized 'Greet.HelloReply' to 0 byte message.
0.593s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error sending message.
0.593s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error when executing service method 'WaitUntilDeadline'.
0.594s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executed endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
0.594s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request finished in 143.84470000000002ms 200 application/grpc-web
0.594s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCG" stopped.
0.637s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Sending message.
0.637s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Request with timeout of 00:00:00.0500000 has exceeded its deadline.
0.637s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Serialized 'Greet.HelloReply' to 0 byte message.
0.637s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Sending gRPC-Web response with content-type 'application/grpc-web'.
0.637s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error sending message.
0.637s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: IHttpResetFeature is not available so unable to cleanly reset response stream. Aborting response stream.
0.637s SERVER Microsoft.AspNetCore.Server.Kestrel - Information: Connection id "0HLS2KJ507DCI", Request id "0HLS2KJ507DCI:00000001": the application aborted the connection.
0.637s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DCI" sending FIN because: "The connection was aborted by the application."
0.637s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error when executing service method 'WaitUntilDeadline'.
0.637s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executed endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
0.637s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request finished in 123.53410000000001ms 200 application/grpc-web
0.637s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCH" stopped.
0.639s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCI" disconnecting.
0.639s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCJ" accepted.
0.639s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCJ" started.
0.640s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request starting HTTP/1.1 POST http://127.0.0.1:50040/DynamicService/WaitUntilDeadline application/grpc-web 
0.640s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: 4 candidate(s) found for the request path '/DynamicService/WaitUntilDeadline'
0.640s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - /DynamicService/WaitUntilDeadline' with route pattern '/DynamicService/WaitUntilDeadline' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.640s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented method for DynamicService' with route pattern 'DynamicService/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.640s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented service' with route pattern '{unimplementedService}/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.640s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint '{FirstSegment}/{SecondSegment}' with route pattern '{FirstSegment}/{SecondSegment}' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.640s SERVER Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware - Debug: Request matched endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
0.640s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Detected gRPC-Web request from content-type 'application/grpc-web'.
0.640s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executing endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
0.640s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Reading message.
0.640s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCJ", Request id "0HLS2KJ507DCJ:00000001": started reading request body.
0.640s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Deserializing 7 byte message to 'Greet.HelloRequest'.
0.640s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Received message.
0.640s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCJ", Request id "0HLS2KJ507DCJ:00000001": done reading request body.
0.698s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Request with timeout of 00:00:00.0500000 has exceeded its deadline.
0.698s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Sending gRPC-Web response with content-type 'application/grpc-web'.
0.698s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: IHttpResetFeature is not available so unable to cleanly reset response stream. Aborting response stream.
0.698s SERVER Microsoft.AspNetCore.Server.Kestrel - Information: Connection id "0HLS2KJ507DCJ", Request id "0HLS2KJ507DCJ:00000001": the application aborted the connection.
0.698s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DCJ" sending FIN because: "The connection was aborted by the application."
0.699s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCK" accepted.
0.699s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCK" started.
0.699s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request starting HTTP/1.1 POST http://127.0.0.1:50040/DynamicService/WaitUntilDeadline application/grpc-web 
0.699s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: 4 candidate(s) found for the request path '/DynamicService/WaitUntilDeadline'
0.699s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - /DynamicService/WaitUntilDeadline' with route pattern '/DynamicService/WaitUntilDeadline' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.699s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented method for DynamicService' with route pattern 'DynamicService/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.699s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented service' with route pattern '{unimplementedService}/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.699s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint '{FirstSegment}/{SecondSegment}' with route pattern '{FirstSegment}/{SecondSegment}' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.699s SERVER Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware - Debug: Request matched endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
0.699s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Detected gRPC-Web request from content-type 'application/grpc-web'.
0.699s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executing endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
0.699s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Reading message.
0.699s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCK", Request id "0HLS2KJ507DCK:00000001": started reading request body.
0.699s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Deserializing 7 byte message to 'Greet.HelloRequest'.
0.699s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Received message.
0.699s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCK", Request id "0HLS2KJ507DCK:00000001": done reading request body.
0.700s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCJ" disconnecting.
0.718s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Sending message.
0.718s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Serialized 'Greet.HelloReply' to 0 byte message.
0.718s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error sending message.
0.718s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error when executing service method 'WaitUntilDeadline'.
0.718s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executed endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
0.718s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request finished in 137.57850000000002ms 200 application/grpc-web
0.718s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCI" stopped.
0.761s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Request with timeout of 00:00:00.0500000 has exceeded its deadline.
0.761s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Sending gRPC-Web response with content-type 'application/grpc-web'.
0.761s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: IHttpResetFeature is not available so unable to cleanly reset response stream. Aborting response stream.
0.761s SERVER Microsoft.AspNetCore.Server.Kestrel - Information: Connection id "0HLS2KJ507DCK", Request id "0HLS2KJ507DCK:00000001": the application aborted the connection.
0.761s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DCK" sending FIN because: "The connection was aborted by the application."
0.762s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCL" accepted.
0.762s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCL" started.
0.763s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCK" disconnecting.
0.767s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request starting HTTP/1.1 POST http://127.0.0.1:50040/DynamicService/WaitUntilDeadline application/grpc-web 
0.767s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: 4 candidate(s) found for the request path '/DynamicService/WaitUntilDeadline'
0.767s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - /DynamicService/WaitUntilDeadline' with route pattern '/DynamicService/WaitUntilDeadline' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.767s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented method for DynamicService' with route pattern 'DynamicService/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.767s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented service' with route pattern '{unimplementedService}/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.767s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint '{FirstSegment}/{SecondSegment}' with route pattern '{FirstSegment}/{SecondSegment}' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.767s SERVER Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware - Debug: Request matched endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
0.767s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Detected gRPC-Web request from content-type 'application/grpc-web'.
0.767s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executing endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
0.767s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Reading message.
0.767s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCL", Request id "0HLS2KJ507DCL:00000001": started reading request body.
0.767s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Deserializing 7 byte message to 'Greet.HelloRequest'.
0.767s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Received message.
0.767s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCL", Request id "0HLS2KJ507DCL:00000001": done reading request body.
0.779s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Sending message.
0.779s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Serialized 'Greet.HelloReply' to 0 byte message.
0.779s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error sending message.
0.779s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error when executing service method 'WaitUntilDeadline'.
0.779s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executed endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
0.779s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request finished in 139.5629ms 200 application/grpc-web
0.779s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCJ" stopped.
0.823s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Sending message.
0.823s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Request with timeout of 00:00:00.0500000 has exceeded its deadline.
0.823s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Serialized 'Greet.HelloReply' to 0 byte message.
0.823s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Sending gRPC-Web response with content-type 'application/grpc-web'.
0.823s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: IHttpResetFeature is not available so unable to cleanly reset response stream. Aborting response stream.
0.823s SERVER Microsoft.AspNetCore.Server.Kestrel - Information: Connection id "0HLS2KJ507DCL", Request id "0HLS2KJ507DCL:00000001": the application aborted the connection.
0.823s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DCL" sending FIN because: "The connection was aborted by the application."
0.823s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error sending message.
0.823s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error when executing service method 'WaitUntilDeadline'.
0.824s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executed endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
0.824s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request finished in 124.6447ms 200 application/grpc-web
0.824s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCK" stopped.
0.824s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCM" accepted.
0.824s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCM" started.
0.824s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request starting HTTP/1.1 POST http://127.0.0.1:50040/DynamicService/WaitUntilDeadline application/grpc-web 
0.824s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: 4 candidate(s) found for the request path '/DynamicService/WaitUntilDeadline'
0.824s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - /DynamicService/WaitUntilDeadline' with route pattern '/DynamicService/WaitUntilDeadline' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.824s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented method for DynamicService' with route pattern 'DynamicService/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.824s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented service' with route pattern '{unimplementedService}/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.824s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint '{FirstSegment}/{SecondSegment}' with route pattern '{FirstSegment}/{SecondSegment}' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.824s SERVER Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware - Debug: Request matched endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
0.824s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Detected gRPC-Web request from content-type 'application/grpc-web'.
0.824s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executing endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
0.824s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Reading message.
0.824s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCM", Request id "0HLS2KJ507DCM:00000001": started reading request body.
0.824s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Deserializing 7 byte message to 'Greet.HelloRequest'.
0.825s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Received message.
0.825s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCM", Request id "0HLS2KJ507DCM:00000001": done reading request body.
0.825s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCL" disconnecting.
0.879s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Request with timeout of 00:00:00.0500000 has exceeded its deadline.
0.879s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Sending gRPC-Web response with content-type 'application/grpc-web'.
0.879s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: IHttpResetFeature is not available so unable to cleanly reset response stream. Aborting response stream.
0.879s SERVER Microsoft.AspNetCore.Server.Kestrel - Information: Connection id "0HLS2KJ507DCM", Request id "0HLS2KJ507DCM:00000001": the application aborted the connection.
0.879s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DCM" sending FIN because: "The connection was aborted by the application."
0.880s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCN" accepted.
0.880s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCN" started.
0.880s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request starting HTTP/1.1 POST http://127.0.0.1:50040/DynamicService/WaitUntilDeadline application/grpc-web 
0.880s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: 4 candidate(s) found for the request path '/DynamicService/WaitUntilDeadline'
0.880s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - /DynamicService/WaitUntilDeadline' with route pattern '/DynamicService/WaitUntilDeadline' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.880s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented method for DynamicService' with route pattern 'DynamicService/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.880s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented service' with route pattern '{unimplementedService}/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.880s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint '{FirstSegment}/{SecondSegment}' with route pattern '{FirstSegment}/{SecondSegment}' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.880s SERVER Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware - Debug: Request matched endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
0.880s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Detected gRPC-Web request from content-type 'application/grpc-web'.
0.880s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executing endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
0.880s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Reading message.
0.880s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCN", Request id "0HLS2KJ507DCN:00000001": started reading request body.
0.880s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Deserializing 7 byte message to 'Greet.HelloRequest'.
0.880s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Received message.
0.880s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCN", Request id "0HLS2KJ507DCN:00000001": done reading request body.
0.881s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCM" disconnecting.
0.888s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Sending message.
0.888s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Serialized 'Greet.HelloReply' to 0 byte message.
0.888s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error sending message.
0.889s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error when executing service method 'WaitUntilDeadline'.
0.889s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executed endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
0.889s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request finished in 121.52820000000001ms 200 application/grpc-web
0.889s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCL" stopped.
0.939s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Sending message.
0.939s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Request with timeout of 00:00:00.0500000 has exceeded its deadline.
0.939s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Serialized 'Greet.HelloReply' to 0 byte message.
0.939s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Sending gRPC-Web response with content-type 'application/grpc-web'.
0.939s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: IHttpResetFeature is not available so unable to cleanly reset response stream. Aborting response stream.
0.939s SERVER Microsoft.AspNetCore.Server.Kestrel - Information: Connection id "0HLS2KJ507DCN", Request id "0HLS2KJ507DCN:00000001": the application aborted the connection.
0.939s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DCN" sending FIN because: "The connection was aborted by the application."
0.939s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error sending message.
0.940s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error when executing service method 'WaitUntilDeadline'.
0.940s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executed endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
0.940s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request finished in 115.26650000000001ms 200 application/grpc-web
0.940s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCM" stopped.
0.940s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCO" accepted.
0.940s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCO" started.
0.940s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request starting HTTP/1.1 POST http://127.0.0.1:50040/DynamicService/WaitUntilDeadline application/grpc-web 
0.940s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: 4 candidate(s) found for the request path '/DynamicService/WaitUntilDeadline'
0.940s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - /DynamicService/WaitUntilDeadline' with route pattern '/DynamicService/WaitUntilDeadline' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.940s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented method for DynamicService' with route pattern 'DynamicService/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.940s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented service' with route pattern '{unimplementedService}/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.940s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint '{FirstSegment}/{SecondSegment}' with route pattern '{FirstSegment}/{SecondSegment}' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.940s SERVER Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware - Debug: Request matched endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
0.940s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Detected gRPC-Web request from content-type 'application/grpc-web'.
0.940s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executing endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
0.941s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Reading message.
0.941s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCO", Request id "0HLS2KJ507DCO:00000001": started reading request body.
0.941s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Deserializing 7 byte message to 'Greet.HelloRequest'.
0.941s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Received message.
0.941s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCO", Request id "0HLS2KJ507DCO:00000001": done reading request body.
0.941s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCN" disconnecting.
0.997s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Sending message.
0.997s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Request with timeout of 00:00:00.0500000 has exceeded its deadline.
0.997s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Serialized 'Greet.HelloReply' to 0 byte message.
0.997s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Sending gRPC-Web response with content-type 'application/grpc-web'.
0.997s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: IHttpResetFeature is not available so unable to cleanly reset response stream. Aborting response stream.
0.997s SERVER Microsoft.AspNetCore.Server.Kestrel - Information: Connection id "0HLS2KJ507DCO", Request id "0HLS2KJ507DCO:00000001": the application aborted the connection.
0.997s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DCO" sending FIN because: "The connection was aborted by the application."
0.997s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error sending message.
0.998s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error when executing service method 'WaitUntilDeadline'.
0.998s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executed endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
0.998s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request finished in 117.43260000000001ms 200 application/grpc-web
0.998s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCN" stopped.
0.998s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCP" accepted.
0.998s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCP" started.
0.998s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request starting HTTP/1.1 POST http://127.0.0.1:50040/DynamicService/WaitUntilDeadline application/grpc-web 
0.998s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: 4 candidate(s) found for the request path '/DynamicService/WaitUntilDeadline'
0.998s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - /DynamicService/WaitUntilDeadline' with route pattern '/DynamicService/WaitUntilDeadline' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.998s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented method for DynamicService' with route pattern 'DynamicService/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.998s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented service' with route pattern '{unimplementedService}/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.998s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint '{FirstSegment}/{SecondSegment}' with route pattern '{FirstSegment}/{SecondSegment}' is valid for the request path '/DynamicService/WaitUntilDeadline'
0.998s SERVER Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware - Debug: Request matched endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
0.998s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Detected gRPC-Web request from content-type 'application/grpc-web'.
0.998s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executing endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
0.998s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Reading message.
0.998s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCP", Request id "0HLS2KJ507DCP:00000001": started reading request body.
0.998s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Deserializing 7 byte message to 'Greet.HelloRequest'.
0.998s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Received message.
0.998s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCP", Request id "0HLS2KJ507DCP:00000001": done reading request body.
0.999s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCO" disconnecting.
1.063s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Request with timeout of 00:00:00.0500000 has exceeded its deadline.
1.063s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Sending gRPC-Web response with content-type 'application/grpc-web'.
1.063s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: IHttpResetFeature is not available so unable to cleanly reset response stream. Aborting response stream.
1.063s SERVER Microsoft.AspNetCore.Server.Kestrel - Information: Connection id "0HLS2KJ507DCP", Request id "0HLS2KJ507DCP:00000001": the application aborted the connection.
1.063s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DCP" sending FIN because: "The connection was aborted by the application."
1.068s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCQ" accepted.
1.068s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCP" disconnecting.
1.068s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCQ" started.
1.068s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request starting HTTP/1.1 POST http://127.0.0.1:50040/DynamicService/WaitUntilDeadline application/grpc-web 
1.068s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: 4 candidate(s) found for the request path '/DynamicService/WaitUntilDeadline'
1.068s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - /DynamicService/WaitUntilDeadline' with route pattern '/DynamicService/WaitUntilDeadline' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.068s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented method for DynamicService' with route pattern 'DynamicService/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.068s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented service' with route pattern '{unimplementedService}/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.068s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint '{FirstSegment}/{SecondSegment}' with route pattern '{FirstSegment}/{SecondSegment}' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.068s SERVER Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware - Debug: Request matched endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
1.068s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Detected gRPC-Web request from content-type 'application/grpc-web'.
1.068s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executing endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
1.068s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Reading message.
1.068s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCQ", Request id "0HLS2KJ507DCQ:00000001": started reading request body.
1.068s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Deserializing 7 byte message to 'Greet.HelloRequest'.
1.068s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Received message.
1.068s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCQ", Request id "0HLS2KJ507DCQ:00000001": done reading request body.
1.077s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Sending message.
1.077s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Serialized 'Greet.HelloReply' to 0 byte message.
1.077s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error sending message.
1.077s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error when executing service method 'WaitUntilDeadline'.
1.077s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executed endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
1.077s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request finished in 136.7379ms 200 application/grpc-web
1.077s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCO" stopped.
1.120s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Request with timeout of 00:00:00.0500000 has exceeded its deadline.
1.120s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Sending message.
1.120s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Serialized 'Greet.HelloReply' to 0 byte message.
1.120s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Sending gRPC-Web response with content-type 'application/grpc-web'.
1.120s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: IHttpResetFeature is not available so unable to cleanly reset response stream. Aborting response stream.
1.120s SERVER Microsoft.AspNetCore.Server.Kestrel - Information: Connection id "0HLS2KJ507DCQ", Request id "0HLS2KJ507DCQ:00000001": the application aborted the connection.
1.120s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DCQ" sending FIN because: "The connection was aborted by the application."
1.120s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error sending message.
1.120s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error when executing service method 'WaitUntilDeadline'.
1.120s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executed endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
1.120s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request finished in 121.9116ms 200 application/grpc-web
1.120s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCP" stopped.
1.121s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCR" accepted.
1.121s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCR" started.
1.121s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request starting HTTP/1.1 POST http://127.0.0.1:50040/DynamicService/WaitUntilDeadline application/grpc-web 
1.121s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: 4 candidate(s) found for the request path '/DynamicService/WaitUntilDeadline'
1.121s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - /DynamicService/WaitUntilDeadline' with route pattern '/DynamicService/WaitUntilDeadline' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.121s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented method for DynamicService' with route pattern 'DynamicService/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.121s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented service' with route pattern '{unimplementedService}/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.121s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint '{FirstSegment}/{SecondSegment}' with route pattern '{FirstSegment}/{SecondSegment}' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.121s SERVER Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware - Debug: Request matched endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
1.121s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Detected gRPC-Web request from content-type 'application/grpc-web'.
1.121s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executing endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
1.121s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Reading message.
1.121s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCR", Request id "0HLS2KJ507DCR:00000001": started reading request body.
1.121s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Deserializing 7 byte message to 'Greet.HelloRequest'.
1.121s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Received message.
1.121s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCR", Request id "0HLS2KJ507DCR:00000001": done reading request body.
1.122s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCQ" disconnecting.
1.182s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Request with timeout of 00:00:00.0500000 has exceeded its deadline.
1.182s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Sending gRPC-Web response with content-type 'application/grpc-web'.
1.182s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: IHttpResetFeature is not available so unable to cleanly reset response stream. Aborting response stream.
1.182s SERVER Microsoft.AspNetCore.Server.Kestrel - Information: Connection id "0HLS2KJ507DCR", Request id "0HLS2KJ507DCR:00000001": the application aborted the connection.
1.182s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DCR" sending FIN because: "The connection was aborted by the application."
1.183s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCS" accepted.
1.183s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCS" started.
1.183s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request starting HTTP/1.1 POST http://127.0.0.1:50040/DynamicService/WaitUntilDeadline application/grpc-web 
1.183s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: 4 candidate(s) found for the request path '/DynamicService/WaitUntilDeadline'
1.183s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - /DynamicService/WaitUntilDeadline' with route pattern '/DynamicService/WaitUntilDeadline' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.183s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented method for DynamicService' with route pattern 'DynamicService/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.183s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented service' with route pattern '{unimplementedService}/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.183s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint '{FirstSegment}/{SecondSegment}' with route pattern '{FirstSegment}/{SecondSegment}' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.183s SERVER Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware - Debug: Request matched endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
1.183s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Detected gRPC-Web request from content-type 'application/grpc-web'.
1.183s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executing endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
1.183s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Reading message.
1.183s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCS", Request id "0HLS2KJ507DCS:00000001": started reading request body.
1.183s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Deserializing 7 byte message to 'Greet.HelloRequest'.
1.183s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Received message.
1.183s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCS", Request id "0HLS2KJ507DCS:00000001": done reading request body.
1.184s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCR" disconnecting.
1.198s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Sending message.
1.198s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Serialized 'Greet.HelloReply' to 0 byte message.
1.198s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error sending message.
1.198s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error when executing service method 'WaitUntilDeadline'.
1.198s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executed endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
1.198s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request finished in 130.1842ms 200 application/grpc-web
1.198s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCQ" stopped.
1.246s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Request with timeout of 00:00:00.0500000 has exceeded its deadline.
1.246s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Sending gRPC-Web response with content-type 'application/grpc-web'.
1.246s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: IHttpResetFeature is not available so unable to cleanly reset response stream. Aborting response stream.
1.246s SERVER Microsoft.AspNetCore.Server.Kestrel - Information: Connection id "0HLS2KJ507DCS", Request id "0HLS2KJ507DCS:00000001": the application aborted the connection.
1.246s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DCS" sending FIN because: "The connection was aborted by the application."
1.247s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCS" disconnecting.
1.247s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DCS" reset.
1.249s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCT" accepted.
1.249s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCT" started.
1.249s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request starting HTTP/1.1 POST http://127.0.0.1:50040/DynamicService/WaitUntilDeadline application/grpc-web 
1.249s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: 4 candidate(s) found for the request path '/DynamicService/WaitUntilDeadline'
1.249s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - /DynamicService/WaitUntilDeadline' with route pattern '/DynamicService/WaitUntilDeadline' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.249s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented method for DynamicService' with route pattern 'DynamicService/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.249s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented service' with route pattern '{unimplementedService}/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.249s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint '{FirstSegment}/{SecondSegment}' with route pattern '{FirstSegment}/{SecondSegment}' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.249s SERVER Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware - Debug: Request matched endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
1.249s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Detected gRPC-Web request from content-type 'application/grpc-web'.
1.250s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executing endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
1.250s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Reading message.
1.250s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCT", Request id "0HLS2KJ507DCT:00000001": started reading request body.
1.250s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Deserializing 7 byte message to 'Greet.HelloRequest'.
1.250s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Received message.
1.250s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCT", Request id "0HLS2KJ507DCT:00000001": done reading request body.
1.261s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Sending message.
1.261s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Serialized 'Greet.HelloReply' to 0 byte message.
1.261s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error sending message.
1.261s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error when executing service method 'WaitUntilDeadline'.
1.261s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executed endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
1.261s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request finished in 140.4878ms 200 application/grpc-web
1.262s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCR" stopped.
1.309s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Sending message.
1.309s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Request with timeout of 00:00:00.0500000 has exceeded its deadline.
1.309s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Serialized 'Greet.HelloReply' to 0 byte message.
1.309s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Sending gRPC-Web response with content-type 'application/grpc-web'.
1.309s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error sending message.
1.309s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: IHttpResetFeature is not available so unable to cleanly reset response stream. Aborting response stream.
1.309s SERVER Microsoft.AspNetCore.Server.Kestrel - Information: Connection id "0HLS2KJ507DCT", Request id "0HLS2KJ507DCT:00000001": the application aborted the connection.
1.309s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DCT" sending FIN because: "The connection was aborted by the application."
1.309s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error when executing service method 'WaitUntilDeadline'.
1.309s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executed endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
1.309s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCT" disconnecting.
1.310s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request finished in 126.7303ms 200 application/grpc-web
1.310s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCS" stopped.
1.312s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCU" accepted.
1.312s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCU" started.
1.312s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request starting HTTP/1.1 POST http://127.0.0.1:50040/DynamicService/WaitUntilDeadline application/grpc-web 
1.312s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: 4 candidate(s) found for the request path '/DynamicService/WaitUntilDeadline'
1.312s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - /DynamicService/WaitUntilDeadline' with route pattern '/DynamicService/WaitUntilDeadline' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.312s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented method for DynamicService' with route pattern 'DynamicService/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.312s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented service' with route pattern '{unimplementedService}/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.312s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint '{FirstSegment}/{SecondSegment}' with route pattern '{FirstSegment}/{SecondSegment}' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.312s SERVER Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware - Debug: Request matched endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
1.312s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Detected gRPC-Web request from content-type 'application/grpc-web'.
1.312s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executing endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
1.312s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Reading message.
1.312s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCU", Request id "0HLS2KJ507DCU:00000001": started reading request body.
1.312s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Deserializing 7 byte message to 'Greet.HelloRequest'.
1.312s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Received message.
1.313s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCU", Request id "0HLS2KJ507DCU:00000001": done reading request body.
1.372s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Sending message.
1.372s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Request with timeout of 00:00:00.0500000 has exceeded its deadline.
1.372s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Serialized 'Greet.HelloReply' to 0 byte message.
1.372s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Sending gRPC-Web response with content-type 'application/grpc-web'.
1.372s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error sending message.
1.372s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: IHttpResetFeature is not available so unable to cleanly reset response stream. Aborting response stream.
1.372s SERVER Microsoft.AspNetCore.Server.Kestrel - Information: Connection id "0HLS2KJ507DCU", Request id "0HLS2KJ507DCU:00000001": the application aborted the connection.
1.372s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DCU" sending FIN because: "The connection was aborted by the application."
1.372s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error when executing service method 'WaitUntilDeadline'.
1.372s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executed endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
1.372s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request finished in 123.01190000000001ms 200 application/grpc-web
1.372s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCT" stopped.
1.373s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCV" accepted.
1.373s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCV" started.
1.373s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request starting HTTP/1.1 POST http://127.0.0.1:50040/DynamicService/WaitUntilDeadline application/grpc-web 
1.373s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: 4 candidate(s) found for the request path '/DynamicService/WaitUntilDeadline'
1.373s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - /DynamicService/WaitUntilDeadline' with route pattern '/DynamicService/WaitUntilDeadline' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.373s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented method for DynamicService' with route pattern 'DynamicService/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.373s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented service' with route pattern '{unimplementedService}/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.373s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint '{FirstSegment}/{SecondSegment}' with route pattern '{FirstSegment}/{SecondSegment}' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.373s SERVER Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware - Debug: Request matched endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
1.373s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Detected gRPC-Web request from content-type 'application/grpc-web'.
1.373s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executing endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
1.373s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Reading message.
1.373s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCV", Request id "0HLS2KJ507DCV:00000001": started reading request body.
1.373s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Deserializing 7 byte message to 'Greet.HelloRequest'.
1.373s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Received message.
1.373s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCV", Request id "0HLS2KJ507DCV:00000001": done reading request body.
1.374s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCU" disconnecting.
1.434s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Request with timeout of 00:00:00.0500000 has exceeded its deadline.
1.434s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Sending gRPC-Web response with content-type 'application/grpc-web'.
1.434s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: IHttpResetFeature is not available so unable to cleanly reset response stream. Aborting response stream.
1.434s SERVER Microsoft.AspNetCore.Server.Kestrel - Information: Connection id "0HLS2KJ507DCV", Request id "0HLS2KJ507DCV:00000001": the application aborted the connection.
1.434s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DCV" sending FIN because: "The connection was aborted by the application."
1.435s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD0" accepted.
1.435s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD0" started.
1.435s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request starting HTTP/1.1 POST http://127.0.0.1:50040/DynamicService/WaitUntilDeadline application/grpc-web 
1.435s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: 4 candidate(s) found for the request path '/DynamicService/WaitUntilDeadline'
1.435s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - /DynamicService/WaitUntilDeadline' with route pattern '/DynamicService/WaitUntilDeadline' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.435s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented method for DynamicService' with route pattern 'DynamicService/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.435s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented service' with route pattern '{unimplementedService}/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.435s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint '{FirstSegment}/{SecondSegment}' with route pattern '{FirstSegment}/{SecondSegment}' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.435s SERVER Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware - Debug: Request matched endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
1.435s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Detected gRPC-Web request from content-type 'application/grpc-web'.
1.435s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executing endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
1.435s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Reading message.
1.435s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD0", Request id "0HLS2KJ507DD0:00000001": started reading request body.
1.435s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Deserializing 7 byte message to 'Greet.HelloRequest'.
1.435s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Received message.
1.435s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD0", Request id "0HLS2KJ507DD0:00000001": done reading request body.
1.436s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCV" disconnecting.
1.456s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Sending message.
1.456s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Serialized 'Greet.HelloReply' to 0 byte message.
1.456s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error sending message.
1.456s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error when executing service method 'WaitUntilDeadline'.
1.456s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executed endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
1.456s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request finished in 144.0389ms 200 application/grpc-web
1.456s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCU" stopped.
1.495s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Sending message.
1.495s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Request with timeout of 00:00:00.0500000 has exceeded its deadline.
1.495s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Serialized 'Greet.HelloReply' to 0 byte message.
1.495s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Sending gRPC-Web response with content-type 'application/grpc-web'.
1.495s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: IHttpResetFeature is not available so unable to cleanly reset response stream. Aborting response stream.
1.495s SERVER Microsoft.AspNetCore.Server.Kestrel - Information: Connection id "0HLS2KJ507DD0", Request id "0HLS2KJ507DD0:00000001": the application aborted the connection.
1.495s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DD0" sending FIN because: "The connection was aborted by the application."
1.495s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error sending message.
1.495s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error when executing service method 'WaitUntilDeadline'.
1.495s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executed endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
1.495s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request finished in 122.2474ms 200 application/grpc-web
1.495s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DCV" stopped.
1.496s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD1" accepted.
1.496s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD1" started.
1.496s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request starting HTTP/1.1 POST http://127.0.0.1:50040/DynamicService/WaitUntilDeadline application/grpc-web 
1.496s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: 4 candidate(s) found for the request path '/DynamicService/WaitUntilDeadline'
1.496s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - /DynamicService/WaitUntilDeadline' with route pattern '/DynamicService/WaitUntilDeadline' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.496s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented method for DynamicService' with route pattern 'DynamicService/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.496s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented service' with route pattern '{unimplementedService}/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.496s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint '{FirstSegment}/{SecondSegment}' with route pattern '{FirstSegment}/{SecondSegment}' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.496s SERVER Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware - Debug: Request matched endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
1.496s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Detected gRPC-Web request from content-type 'application/grpc-web'.
1.496s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executing endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
1.496s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Reading message.
1.496s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD1", Request id "0HLS2KJ507DD1:00000001": started reading request body.
1.496s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Deserializing 7 byte message to 'Greet.HelloRequest'.
1.496s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Received message.
1.496s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD1", Request id "0HLS2KJ507DD1:00000001": done reading request body.
1.497s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD0" disconnecting.
1.559s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Request with timeout of 00:00:00.0500000 has exceeded its deadline.
1.559s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Sending gRPC-Web response with content-type 'application/grpc-web'.
1.559s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: IHttpResetFeature is not available so unable to cleanly reset response stream. Aborting response stream.
1.559s SERVER Microsoft.AspNetCore.Server.Kestrel - Information: Connection id "0HLS2KJ507DD1", Request id "0HLS2KJ507DD1:00000001": the application aborted the connection.
1.559s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DD1" sending FIN because: "The connection was aborted by the application."
1.560s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD2" accepted.
1.560s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD2" started.
1.560s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request starting HTTP/1.1 POST http://127.0.0.1:50040/DynamicService/WaitUntilDeadline application/grpc-web 
1.560s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: 4 candidate(s) found for the request path '/DynamicService/WaitUntilDeadline'
1.560s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - /DynamicService/WaitUntilDeadline' with route pattern '/DynamicService/WaitUntilDeadline' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.560s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented method for DynamicService' with route pattern 'DynamicService/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.560s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented service' with route pattern '{unimplementedService}/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.560s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint '{FirstSegment}/{SecondSegment}' with route pattern '{FirstSegment}/{SecondSegment}' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.560s SERVER Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware - Debug: Request matched endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
1.560s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Detected gRPC-Web request from content-type 'application/grpc-web'.
1.560s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executing endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
1.560s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Reading message.
1.560s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD2", Request id "0HLS2KJ507DD2:00000001": started reading request body.
1.560s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Deserializing 7 byte message to 'Greet.HelloRequest'.
1.560s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Received message.
1.560s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD2", Request id "0HLS2KJ507DD2:00000001": done reading request body.
1.561s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD1" disconnecting.
1.573s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Sending message.
1.573s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Serialized 'Greet.HelloReply' to 0 byte message.
1.573s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error sending message.
1.573s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error when executing service method 'WaitUntilDeadline'.
1.573s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executed endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
1.573s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request finished in 138.2236ms 200 application/grpc-web
1.573s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD0" stopped.
1.621s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Request with timeout of 00:00:00.0500000 has exceeded its deadline.
1.621s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Sending gRPC-Web response with content-type 'application/grpc-web'.
1.621s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: IHttpResetFeature is not available so unable to cleanly reset response stream. Aborting response stream.
1.621s SERVER Microsoft.AspNetCore.Server.Kestrel - Information: Connection id "0HLS2KJ507DD2", Request id "0HLS2KJ507DD2:00000001": the application aborted the connection.
1.621s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DD2" sending FIN because: "The connection was aborted by the application."
1.622s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD3" accepted.
1.622s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD3" started.
1.622s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request starting HTTP/1.1 POST http://127.0.0.1:50040/DynamicService/WaitUntilDeadline application/grpc-web 
1.622s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: 4 candidate(s) found for the request path '/DynamicService/WaitUntilDeadline'
1.622s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - /DynamicService/WaitUntilDeadline' with route pattern '/DynamicService/WaitUntilDeadline' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.622s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented method for DynamicService' with route pattern 'DynamicService/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.622s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented service' with route pattern '{unimplementedService}/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.622s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint '{FirstSegment}/{SecondSegment}' with route pattern '{FirstSegment}/{SecondSegment}' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.622s SERVER Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware - Debug: Request matched endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
1.622s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Detected gRPC-Web request from content-type 'application/grpc-web'.
1.622s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executing endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
1.622s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Reading message.
1.622s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD3", Request id "0HLS2KJ507DD3:00000001": started reading request body.
1.622s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Deserializing 7 byte message to 'Greet.HelloRequest'.
1.622s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Received message.
1.622s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD3", Request id "0HLS2KJ507DD3:00000001": done reading request body.
1.623s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD2" disconnecting.
1.637s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Sending message.
1.637s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Serialized 'Greet.HelloReply' to 0 byte message.
1.637s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error sending message.
1.637s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error when executing service method 'WaitUntilDeadline'.
1.637s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executed endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
1.637s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request finished in 141.4344ms 200 application/grpc-web
1.637s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD1" stopped.
1.684s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Request with timeout of 00:00:00.0500000 has exceeded its deadline.
1.684s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Sending gRPC-Web response with content-type 'application/grpc-web'.
1.684s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: IHttpResetFeature is not available so unable to cleanly reset response stream. Aborting response stream.
1.684s SERVER Microsoft.AspNetCore.Server.Kestrel - Information: Connection id "0HLS2KJ507DD3", Request id "0HLS2KJ507DD3:00000001": the application aborted the connection.
1.684s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DD3" sending FIN because: "The connection was aborted by the application."
1.685s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD4" accepted.
1.685s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD4" started.
1.685s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request starting HTTP/1.1 POST http://127.0.0.1:50040/DynamicService/WaitUntilDeadline application/grpc-web 
1.685s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: 4 candidate(s) found for the request path '/DynamicService/WaitUntilDeadline'
1.685s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - /DynamicService/WaitUntilDeadline' with route pattern '/DynamicService/WaitUntilDeadline' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.685s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented method for DynamicService' with route pattern 'DynamicService/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.685s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented service' with route pattern '{unimplementedService}/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.685s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint '{FirstSegment}/{SecondSegment}' with route pattern '{FirstSegment}/{SecondSegment}' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.685s SERVER Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware - Debug: Request matched endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
1.685s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Detected gRPC-Web request from content-type 'application/grpc-web'.
1.685s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executing endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
1.685s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Reading message.
1.685s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD4", Request id "0HLS2KJ507DD4:00000001": started reading request body.
1.685s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Deserializing 7 byte message to 'Greet.HelloRequest'.
1.685s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Received message.
1.685s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD4", Request id "0HLS2KJ507DD4:00000001": done reading request body.
1.686s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD3" disconnecting.
1.701s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Sending message.
1.701s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Serialized 'Greet.HelloReply' to 0 byte message.
1.701s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error sending message.
1.701s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error when executing service method 'WaitUntilDeadline'.
1.701s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executed endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
1.701s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request finished in 141.3151ms 200 application/grpc-web
1.701s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD2" stopped.
1.745s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Sending message.
1.745s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Request with timeout of 00:00:00.0500000 has exceeded its deadline.
1.745s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Serialized 'Greet.HelloReply' to 0 byte message.
1.745s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Sending gRPC-Web response with content-type 'application/grpc-web'.
1.745s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: IHttpResetFeature is not available so unable to cleanly reset response stream. Aborting response stream.
1.745s SERVER Microsoft.AspNetCore.Server.Kestrel - Information: Connection id "0HLS2KJ507DD4", Request id "0HLS2KJ507DD4:00000001": the application aborted the connection.
1.745s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DD4" sending FIN because: "The connection was aborted by the application."
1.745s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error sending message.
1.745s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error when executing service method 'WaitUntilDeadline'.
1.745s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executed endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
1.745s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request finished in 123.3473ms 200 application/grpc-web
1.745s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD3" stopped.
1.747s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD4" disconnecting.
1.747s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD5" accepted.
1.747s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD5" started.
1.748s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request starting HTTP/1.1 POST http://127.0.0.1:50040/DynamicService/WaitUntilDeadline application/grpc-web 
1.748s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: 4 candidate(s) found for the request path '/DynamicService/WaitUntilDeadline'
1.748s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - /DynamicService/WaitUntilDeadline' with route pattern '/DynamicService/WaitUntilDeadline' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.748s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented method for DynamicService' with route pattern 'DynamicService/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.748s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented service' with route pattern '{unimplementedService}/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.748s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint '{FirstSegment}/{SecondSegment}' with route pattern '{FirstSegment}/{SecondSegment}' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.748s SERVER Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware - Debug: Request matched endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
1.748s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Detected gRPC-Web request from content-type 'application/grpc-web'.
1.748s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executing endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
1.748s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Reading message.
1.748s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD5", Request id "0HLS2KJ507DD5:00000001": started reading request body.
1.748s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Deserializing 7 byte message to 'Greet.HelloRequest'.
1.748s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Received message.
1.749s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD5", Request id "0HLS2KJ507DD5:00000001": done reading request body.
1.808s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Sending message.
1.808s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Request with timeout of 00:00:00.0500000 has exceeded its deadline.
1.808s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Serialized 'Greet.HelloReply' to 0 byte message.
1.808s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Sending gRPC-Web response with content-type 'application/grpc-web'.
1.809s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error sending message.
1.809s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: IHttpResetFeature is not available so unable to cleanly reset response stream. Aborting response stream.
1.809s SERVER Microsoft.AspNetCore.Server.Kestrel - Information: Connection id "0HLS2KJ507DD5", Request id "0HLS2KJ507DD5:00000001": the application aborted the connection.
1.809s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DD5" sending FIN because: "The connection was aborted by the application."
1.809s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error when executing service method 'WaitUntilDeadline'.
1.809s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD5" disconnecting.
1.809s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executed endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
1.809s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request finished in 124.2009ms 200 application/grpc-web
1.809s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DD5" reset.
1.809s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD4" stopped.
1.811s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD6" accepted.
1.811s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD6" started.
1.812s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request starting HTTP/1.1 POST http://127.0.0.1:50040/DynamicService/WaitUntilDeadline application/grpc-web 
1.812s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: 4 candidate(s) found for the request path '/DynamicService/WaitUntilDeadline'
1.812s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - /DynamicService/WaitUntilDeadline' with route pattern '/DynamicService/WaitUntilDeadline' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.812s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented method for DynamicService' with route pattern 'DynamicService/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.812s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented service' with route pattern '{unimplementedService}/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.812s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint '{FirstSegment}/{SecondSegment}' with route pattern '{FirstSegment}/{SecondSegment}' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.812s SERVER Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware - Debug: Request matched endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
1.812s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Detected gRPC-Web request from content-type 'application/grpc-web'.
1.812s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executing endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
1.812s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Reading message.
1.812s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD6", Request id "0HLS2KJ507DD6:00000001": started reading request body.
1.812s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Deserializing 7 byte message to 'Greet.HelloRequest'.
1.812s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Received message.
1.812s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD6", Request id "0HLS2KJ507DD6:00000001": done reading request body.
1.869s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Request with timeout of 00:00:00.0500000 has exceeded its deadline.
1.869s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Sending gRPC-Web response with content-type 'application/grpc-web'.
1.870s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: IHttpResetFeature is not available so unable to cleanly reset response stream. Aborting response stream.
1.870s SERVER Microsoft.AspNetCore.Server.Kestrel - Information: Connection id "0HLS2KJ507DD6", Request id "0HLS2KJ507DD6:00000001": the application aborted the connection.
1.870s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DD6" sending FIN because: "The connection was aborted by the application."
1.871s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD7" accepted.
1.871s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD7" started.
1.871s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request starting HTTP/1.1 POST http://127.0.0.1:50040/DynamicService/WaitUntilDeadline application/grpc-web 
1.871s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD6" disconnecting.
1.871s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: 4 candidate(s) found for the request path '/DynamicService/WaitUntilDeadline'
1.871s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - /DynamicService/WaitUntilDeadline' with route pattern '/DynamicService/WaitUntilDeadline' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.871s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented method for DynamicService' with route pattern 'DynamicService/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.871s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented service' with route pattern '{unimplementedService}/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.871s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint '{FirstSegment}/{SecondSegment}' with route pattern '{FirstSegment}/{SecondSegment}' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.871s SERVER Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware - Debug: Request matched endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
1.871s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Detected gRPC-Web request from content-type 'application/grpc-web'.
1.871s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executing endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
1.871s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Reading message.
1.871s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD7", Request id "0HLS2KJ507DD7:00000001": started reading request body.
1.871s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Deserializing 7 byte message to 'Greet.HelloRequest'.
1.871s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Received message.
1.871s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD7", Request id "0HLS2KJ507DD7:00000001": done reading request body.
1.886s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Sending message.
1.886s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Serialized 'Greet.HelloReply' to 0 byte message.
1.886s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error sending message.
1.887s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error when executing service method 'WaitUntilDeadline'.
1.887s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executed endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
1.887s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request finished in 138.8617ms 200 application/grpc-web
1.887s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD5" stopped.
1.922s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Request with timeout of 00:00:00.0500000 has exceeded its deadline.
1.922s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Sending gRPC-Web response with content-type 'application/grpc-web'.
1.922s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: IHttpResetFeature is not available so unable to cleanly reset response stream. Aborting response stream.
1.922s SERVER Microsoft.AspNetCore.Server.Kestrel - Information: Connection id "0HLS2KJ507DD7", Request id "0HLS2KJ507DD7:00000001": the application aborted the connection.
1.922s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DD7" sending FIN because: "The connection was aborted by the application."
1.923s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD8" accepted.
1.923s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD8" started.
1.924s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request starting HTTP/1.1 POST http://127.0.0.1:50040/DynamicService/WaitUntilDeadline application/grpc-web 
1.924s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: 4 candidate(s) found for the request path '/DynamicService/WaitUntilDeadline'
1.924s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - /DynamicService/WaitUntilDeadline' with route pattern '/DynamicService/WaitUntilDeadline' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.924s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented method for DynamicService' with route pattern 'DynamicService/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.924s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented service' with route pattern '{unimplementedService}/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.924s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint '{FirstSegment}/{SecondSegment}' with route pattern '{FirstSegment}/{SecondSegment}' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.924s SERVER Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware - Debug: Request matched endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
1.924s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Detected gRPC-Web request from content-type 'application/grpc-web'.
1.924s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executing endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
1.924s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Reading message.
1.924s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD8", Request id "0HLS2KJ507DD8:00000001": started reading request body.
1.924s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Deserializing 7 byte message to 'Greet.HelloRequest'.
1.924s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Received message.
1.924s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD8", Request id "0HLS2KJ507DD8:00000001": done reading request body.
1.924s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD7" disconnecting.
1.949s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Sending message.
1.949s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Serialized 'Greet.HelloReply' to 0 byte message.
1.949s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error sending message.
1.950s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error when executing service method 'WaitUntilDeadline'.
1.950s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executed endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
1.950s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request finished in 138.0892ms 200 application/grpc-web
1.950s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD6" stopped.
1.983s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Sending message.
1.983s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Request with timeout of 00:00:00.0500000 has exceeded its deadline.
1.983s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Serialized 'Greet.HelloReply' to 0 byte message.
1.983s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Sending gRPC-Web response with content-type 'application/grpc-web'.
1.983s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: IHttpResetFeature is not available so unable to cleanly reset response stream. Aborting response stream.
1.983s SERVER Microsoft.AspNetCore.Server.Kestrel - Information: Connection id "0HLS2KJ507DD8", Request id "0HLS2KJ507DD8:00000001": the application aborted the connection.
1.983s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DD8" sending FIN because: "The connection was aborted by the application."
1.983s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error sending message.
1.984s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error when executing service method 'WaitUntilDeadline'.
1.984s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executed endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
1.984s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request finished in 112.40790000000001ms 200 application/grpc-web
1.984s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD7" stopped.
1.984s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD9" accepted.
1.984s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD9" started.
1.984s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request starting HTTP/1.1 POST http://127.0.0.1:50040/DynamicService/WaitUntilDeadline application/grpc-web 
1.984s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: 4 candidate(s) found for the request path '/DynamicService/WaitUntilDeadline'
1.984s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - /DynamicService/WaitUntilDeadline' with route pattern '/DynamicService/WaitUntilDeadline' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.984s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented method for DynamicService' with route pattern 'DynamicService/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.984s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented service' with route pattern '{unimplementedService}/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.984s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint '{FirstSegment}/{SecondSegment}' with route pattern '{FirstSegment}/{SecondSegment}' is valid for the request path '/DynamicService/WaitUntilDeadline'
1.984s SERVER Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware - Debug: Request matched endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
1.984s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Detected gRPC-Web request from content-type 'application/grpc-web'.
1.984s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executing endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
1.984s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Reading message.
1.984s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD9", Request id "0HLS2KJ507DD9:00000001": started reading request body.
1.985s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Deserializing 7 byte message to 'Greet.HelloRequest'.
1.985s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Received message.
1.985s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD9", Request id "0HLS2KJ507DD9:00000001": done reading request body.
1.985s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD8" disconnecting.
2.042s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Request with timeout of 00:00:00.0500000 has exceeded its deadline.
2.042s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Sending gRPC-Web response with content-type 'application/grpc-web'.
2.042s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: IHttpResetFeature is not available so unable to cleanly reset response stream. Aborting response stream.
2.042s SERVER Microsoft.AspNetCore.Server.Kestrel - Information: Connection id "0HLS2KJ507DD9", Request id "0HLS2KJ507DD9:00000001": the application aborted the connection.
2.042s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DD9" sending FIN because: "The connection was aborted by the application."
2.043s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDA" accepted.
2.043s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDA" started.
2.043s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request starting HTTP/1.1 POST http://127.0.0.1:50040/DynamicService/WaitUntilDeadline application/grpc-web 
2.043s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: 4 candidate(s) found for the request path '/DynamicService/WaitUntilDeadline'
2.043s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - /DynamicService/WaitUntilDeadline' with route pattern '/DynamicService/WaitUntilDeadline' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.043s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented method for DynamicService' with route pattern 'DynamicService/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.043s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented service' with route pattern '{unimplementedService}/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.043s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint '{FirstSegment}/{SecondSegment}' with route pattern '{FirstSegment}/{SecondSegment}' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.043s SERVER Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware - Debug: Request matched endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
2.043s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Detected gRPC-Web request from content-type 'application/grpc-web'.
2.043s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executing endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
2.043s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Reading message.
2.043s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDA", Request id "0HLS2KJ507DDA:00000001": started reading request body.
2.043s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Deserializing 7 byte message to 'Greet.HelloRequest'.
2.043s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Received message.
2.043s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDA", Request id "0HLS2KJ507DDA:00000001": done reading request body.
2.044s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD9" disconnecting.
2.058s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Sending message.
2.058s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Serialized 'Greet.HelloReply' to 0 byte message.
2.058s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error sending message.
2.058s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error when executing service method 'WaitUntilDeadline'.
2.058s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executed endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
2.058s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request finished in 134.97140000000002ms 200 application/grpc-web
2.059s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD8" stopped.
2.105s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Sending message.
2.105s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Request with timeout of 00:00:00.0500000 has exceeded its deadline.
2.105s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Serialized 'Greet.HelloReply' to 0 byte message.
2.105s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Sending gRPC-Web response with content-type 'application/grpc-web'.
2.105s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: IHttpResetFeature is not available so unable to cleanly reset response stream. Aborting response stream.
2.105s SERVER Microsoft.AspNetCore.Server.Kestrel - Information: Connection id "0HLS2KJ507DDA", Request id "0HLS2KJ507DDA:00000001": the application aborted the connection.
2.105s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DDA" sending FIN because: "The connection was aborted by the application."
2.105s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error sending message.
2.106s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error when executing service method 'WaitUntilDeadline'.
2.106s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executed endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
2.106s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request finished in 121.342ms 200 application/grpc-web
2.106s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DD9" stopped.
2.106s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDB" accepted.
2.106s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDB" started.
2.106s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request starting HTTP/1.1 POST http://127.0.0.1:50040/DynamicService/WaitUntilDeadline application/grpc-web 
2.106s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: 4 candidate(s) found for the request path '/DynamicService/WaitUntilDeadline'
2.106s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - /DynamicService/WaitUntilDeadline' with route pattern '/DynamicService/WaitUntilDeadline' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.106s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented method for DynamicService' with route pattern 'DynamicService/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.106s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented service' with route pattern '{unimplementedService}/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.106s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint '{FirstSegment}/{SecondSegment}' with route pattern '{FirstSegment}/{SecondSegment}' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.106s SERVER Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware - Debug: Request matched endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
2.106s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Detected gRPC-Web request from content-type 'application/grpc-web'.
2.106s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executing endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
2.107s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Reading message.
2.107s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDB", Request id "0HLS2KJ507DDB:00000001": started reading request body.
2.107s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Deserializing 7 byte message to 'Greet.HelloRequest'.
2.107s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Received message.
2.107s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDB", Request id "0HLS2KJ507DDB:00000001": done reading request body.
2.107s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDA" disconnecting.
2.167s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Request with timeout of 00:00:00.0500000 has exceeded its deadline.
2.167s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Sending gRPC-Web response with content-type 'application/grpc-web'.
2.168s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: IHttpResetFeature is not available so unable to cleanly reset response stream. Aborting response stream.
2.168s SERVER Microsoft.AspNetCore.Server.Kestrel - Information: Connection id "0HLS2KJ507DDB", Request id "0HLS2KJ507DDB:00000001": the application aborted the connection.
2.168s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DDB" sending FIN because: "The connection was aborted by the application."
2.168s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDB" disconnecting.
2.168s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DDB" reset.
2.169s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDC" accepted.
2.169s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDC" started.
2.170s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request starting HTTP/1.1 POST http://127.0.0.1:50040/DynamicService/WaitUntilDeadline application/grpc-web 
2.170s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: 4 candidate(s) found for the request path '/DynamicService/WaitUntilDeadline'
2.170s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - /DynamicService/WaitUntilDeadline' with route pattern '/DynamicService/WaitUntilDeadline' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.170s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented method for DynamicService' with route pattern 'DynamicService/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.170s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented service' with route pattern '{unimplementedService}/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.170s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint '{FirstSegment}/{SecondSegment}' with route pattern '{FirstSegment}/{SecondSegment}' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.170s SERVER Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware - Debug: Request matched endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
2.170s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Detected gRPC-Web request from content-type 'application/grpc-web'.
2.170s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executing endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
2.170s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Reading message.
2.170s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDC", Request id "0HLS2KJ507DDC:00000001": started reading request body.
2.170s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Deserializing 7 byte message to 'Greet.HelloRequest'.
2.170s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Received message.
2.170s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDC", Request id "0HLS2KJ507DDC:00000001": done reading request body.
2.183s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Sending message.
2.183s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Serialized 'Greet.HelloReply' to 0 byte message.
2.183s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error sending message.
2.184s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error when executing service method 'WaitUntilDeadline'.
2.184s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executed endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
2.184s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request finished in 140.5352ms 200 application/grpc-web
2.184s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDA" stopped.
2.231s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Request with timeout of 00:00:00.0500000 has exceeded its deadline.
2.231s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Sending gRPC-Web response with content-type 'application/grpc-web'.
2.232s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: IHttpResetFeature is not available so unable to cleanly reset response stream. Aborting response stream.
2.232s SERVER Microsoft.AspNetCore.Server.Kestrel - Information: Connection id "0HLS2KJ507DDC", Request id "0HLS2KJ507DDC:00000001": the application aborted the connection.
2.232s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DDC" sending FIN because: "The connection was aborted by the application."
2.232s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDC" disconnecting.
2.233s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDD" accepted.
2.233s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDD" started.
2.234s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request starting HTTP/1.1 POST http://127.0.0.1:50040/DynamicService/WaitUntilDeadline application/grpc-web 
2.234s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: 4 candidate(s) found for the request path '/DynamicService/WaitUntilDeadline'
2.234s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - /DynamicService/WaitUntilDeadline' with route pattern '/DynamicService/WaitUntilDeadline' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.234s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented method for DynamicService' with route pattern 'DynamicService/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.234s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented service' with route pattern '{unimplementedService}/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.234s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint '{FirstSegment}/{SecondSegment}' with route pattern '{FirstSegment}/{SecondSegment}' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.234s SERVER Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware - Debug: Request matched endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
2.234s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Detected gRPC-Web request from content-type 'application/grpc-web'.
2.234s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executing endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
2.234s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Reading message.
2.234s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDD", Request id "0HLS2KJ507DDD:00000001": started reading request body.
2.234s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Deserializing 7 byte message to 'Greet.HelloRequest'.
2.234s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Received message.
2.234s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDD", Request id "0HLS2KJ507DDD:00000001": done reading request body.
2.245s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Sending message.
2.245s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Serialized 'Greet.HelloReply' to 0 byte message.
2.245s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error sending message.
2.246s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error when executing service method 'WaitUntilDeadline'.
2.246s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executed endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
2.246s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request finished in 139.3316ms 200 application/grpc-web
2.246s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDB" stopped.
2.292s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Request with timeout of 00:00:00.0500000 has exceeded its deadline.
2.292s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Sending gRPC-Web response with content-type 'application/grpc-web'.
2.292s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: IHttpResetFeature is not available so unable to cleanly reset response stream. Aborting response stream.
2.292s SERVER Microsoft.AspNetCore.Server.Kestrel - Information: Connection id "0HLS2KJ507DDD", Request id "0HLS2KJ507DDD:00000001": the application aborted the connection.
2.293s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DDD" sending FIN because: "The connection was aborted by the application."
2.294s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDE" accepted.
2.294s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDE" started.
2.294s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request starting HTTP/1.1 POST http://127.0.0.1:50040/DynamicService/WaitUntilDeadline application/grpc-web 
2.294s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: 4 candidate(s) found for the request path '/DynamicService/WaitUntilDeadline'
2.294s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - /DynamicService/WaitUntilDeadline' with route pattern '/DynamicService/WaitUntilDeadline' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.294s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented method for DynamicService' with route pattern 'DynamicService/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.294s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented service' with route pattern '{unimplementedService}/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.294s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint '{FirstSegment}/{SecondSegment}' with route pattern '{FirstSegment}/{SecondSegment}' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.294s SERVER Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware - Debug: Request matched endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
2.294s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDD" disconnecting.
2.294s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Detected gRPC-Web request from content-type 'application/grpc-web'.
2.294s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executing endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
2.294s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Reading message.
2.294s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDE", Request id "0HLS2KJ507DDE:00000001": started reading request body.
2.294s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Deserializing 7 byte message to 'Greet.HelloRequest'.
2.294s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Received message.
2.294s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDE", Request id "0HLS2KJ507DDE:00000001": done reading request body.
2.308s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Sending message.
2.308s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Serialized 'Greet.HelloReply' to 0 byte message.
2.308s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error sending message.
2.309s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error when executing service method 'WaitUntilDeadline'.
2.309s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executed endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
2.309s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request finished in 138.81480000000002ms 200 application/grpc-web
2.309s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDC" stopped.
2.354s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Request with timeout of 00:00:00.0500000 has exceeded its deadline.
2.354s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Sending gRPC-Web response with content-type 'application/grpc-web'.
2.354s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: IHttpResetFeature is not available so unable to cleanly reset response stream. Aborting response stream.
2.354s SERVER Microsoft.AspNetCore.Server.Kestrel - Information: Connection id "0HLS2KJ507DDE", Request id "0HLS2KJ507DDE:00000001": the application aborted the connection.
2.354s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DDE" sending FIN because: "The connection was aborted by the application."
2.355s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDF" accepted.
2.355s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDF" started.
2.355s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request starting HTTP/1.1 POST http://127.0.0.1:50040/DynamicService/WaitUntilDeadline application/grpc-web 
2.355s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: 4 candidate(s) found for the request path '/DynamicService/WaitUntilDeadline'
2.355s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - /DynamicService/WaitUntilDeadline' with route pattern '/DynamicService/WaitUntilDeadline' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.355s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented method for DynamicService' with route pattern 'DynamicService/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.355s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented service' with route pattern '{unimplementedService}/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.355s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint '{FirstSegment}/{SecondSegment}' with route pattern '{FirstSegment}/{SecondSegment}' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.355s SERVER Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware - Debug: Request matched endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
2.355s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Detected gRPC-Web request from content-type 'application/grpc-web'.
2.355s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executing endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
2.356s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Reading message.
2.356s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDF", Request id "0HLS2KJ507DDF:00000001": started reading request body.
2.356s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Deserializing 7 byte message to 'Greet.HelloRequest'.
2.356s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Received message.
2.356s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDF", Request id "0HLS2KJ507DDF:00000001": done reading request body.
2.356s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDE" disconnecting.
2.369s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Sending message.
2.369s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Serialized 'Greet.HelloReply' to 0 byte message.
2.369s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error sending message.
2.370s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error when executing service method 'WaitUntilDeadline'.
2.370s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executed endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
2.370s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request finished in 135.797ms 200 application/grpc-web
2.370s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDD" stopped.
2.418s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Request with timeout of 00:00:00.0500000 has exceeded its deadline.
2.418s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Sending gRPC-Web response with content-type 'application/grpc-web'.
2.418s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: IHttpResetFeature is not available so unable to cleanly reset response stream. Aborting response stream.
2.418s SERVER Microsoft.AspNetCore.Server.Kestrel - Information: Connection id "0HLS2KJ507DDF", Request id "0HLS2KJ507DDF:00000001": the application aborted the connection.
2.418s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DDF" sending FIN because: "The connection was aborted by the application."
2.419s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDG" accepted.
2.419s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDG" started.
2.419s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request starting HTTP/1.1 POST http://127.0.0.1:50040/DynamicService/WaitUntilDeadline application/grpc-web 
2.419s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: 4 candidate(s) found for the request path '/DynamicService/WaitUntilDeadline'
2.419s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - /DynamicService/WaitUntilDeadline' with route pattern '/DynamicService/WaitUntilDeadline' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.419s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented method for DynamicService' with route pattern 'DynamicService/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.419s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented service' with route pattern '{unimplementedService}/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.419s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint '{FirstSegment}/{SecondSegment}' with route pattern '{FirstSegment}/{SecondSegment}' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.419s SERVER Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware - Debug: Request matched endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
2.419s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Detected gRPC-Web request from content-type 'application/grpc-web'.
2.419s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executing endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
2.419s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Reading message.
2.420s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDG", Request id "0HLS2KJ507DDG:00000001": started reading request body.
2.420s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Deserializing 7 byte message to 'Greet.HelloRequest'.
2.420s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Received message.
2.420s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDG", Request id "0HLS2KJ507DDG:00000001": done reading request body.
2.420s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDF" disconnecting.
2.435s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Sending message.
2.435s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Serialized 'Greet.HelloReply' to 0 byte message.
2.435s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error sending message.
2.436s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error when executing service method 'WaitUntilDeadline'.
2.436s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executed endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
2.436s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request finished in 141.51510000000002ms 200 application/grpc-web
2.436s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDE" stopped.
2.473s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Request with timeout of 00:00:00.0500000 has exceeded its deadline.
2.473s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Sending gRPC-Web response with content-type 'application/grpc-web'.
2.473s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: IHttpResetFeature is not available so unable to cleanly reset response stream. Aborting response stream.
2.473s SERVER Microsoft.AspNetCore.Server.Kestrel - Information: Connection id "0HLS2KJ507DDG", Request id "0HLS2KJ507DDG:00000001": the application aborted the connection.
2.473s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DDG" sending FIN because: "The connection was aborted by the application."
2.473s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDH" accepted.
2.473s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDH" started.
2.474s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request starting HTTP/1.1 POST http://127.0.0.1:50040/DynamicService/WaitUntilDeadline application/grpc-web 
2.474s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: 4 candidate(s) found for the request path '/DynamicService/WaitUntilDeadline'
2.474s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - /DynamicService/WaitUntilDeadline' with route pattern '/DynamicService/WaitUntilDeadline' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.474s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented method for DynamicService' with route pattern 'DynamicService/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.474s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented service' with route pattern '{unimplementedService}/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.474s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint '{FirstSegment}/{SecondSegment}' with route pattern '{FirstSegment}/{SecondSegment}' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.474s SERVER Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware - Debug: Request matched endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
2.474s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Detected gRPC-Web request from content-type 'application/grpc-web'.
2.474s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executing endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
2.474s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Reading message.
2.474s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDH", Request id "0HLS2KJ507DDH:00000001": started reading request body.
2.474s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Deserializing 7 byte message to 'Greet.HelloRequest'.
2.474s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Received message.
2.474s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDH", Request id "0HLS2KJ507DDH:00000001": done reading request body.
2.474s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDG" disconnecting.
2.481s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Sending message.
2.481s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Serialized 'Greet.HelloReply' to 0 byte message.
2.481s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error sending message.
2.482s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error when executing service method 'WaitUntilDeadline'.
2.482s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executed endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
2.482s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request finished in 126.20670000000001ms 200 application/grpc-web
2.482s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDF" stopped.
2.531s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Request with timeout of 00:00:00.0500000 has exceeded its deadline.
2.531s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Sending gRPC-Web response with content-type 'application/grpc-web'.
2.531s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: IHttpResetFeature is not available so unable to cleanly reset response stream. Aborting response stream.
2.531s SERVER Microsoft.AspNetCore.Server.Kestrel - Information: Connection id "0HLS2KJ507DDH", Request id "0HLS2KJ507DDH:00000001": the application aborted the connection.
2.531s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DDH" sending FIN because: "The connection was aborted by the application."
2.532s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDI" accepted.
2.532s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDI" started.
2.532s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request starting HTTP/1.1 POST http://127.0.0.1:50040/DynamicService/WaitUntilDeadline application/grpc-web 
2.532s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: 4 candidate(s) found for the request path '/DynamicService/WaitUntilDeadline'
2.532s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - /DynamicService/WaitUntilDeadline' with route pattern '/DynamicService/WaitUntilDeadline' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.532s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented method for DynamicService' with route pattern 'DynamicService/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.532s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented service' with route pattern '{unimplementedService}/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.532s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint '{FirstSegment}/{SecondSegment}' with route pattern '{FirstSegment}/{SecondSegment}' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.532s SERVER Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware - Debug: Request matched endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
2.532s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Detected gRPC-Web request from content-type 'application/grpc-web'.
2.532s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executing endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
2.532s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Reading message.
2.532s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDI", Request id "0HLS2KJ507DDI:00000001": started reading request body.
2.532s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Deserializing 7 byte message to 'Greet.HelloRequest'.
2.532s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Received message.
2.532s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDI", Request id "0HLS2KJ507DDI:00000001": done reading request body.
2.533s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDH" disconnecting.
2.558s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Sending message.
2.558s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Serialized 'Greet.HelloReply' to 0 byte message.
2.558s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error sending message.
2.559s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error when executing service method 'WaitUntilDeadline'.
2.559s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executed endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
2.559s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request finished in 139.2329ms 200 application/grpc-web
2.559s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDG" stopped.
2.589s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Request with timeout of 00:00:00.0500000 has exceeded its deadline.
2.589s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Sending gRPC-Web response with content-type 'application/grpc-web'.
2.589s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: IHttpResetFeature is not available so unable to cleanly reset response stream. Aborting response stream.
2.589s SERVER Microsoft.AspNetCore.Server.Kestrel - Information: Connection id "0HLS2KJ507DDI", Request id "0HLS2KJ507DDI:00000001": the application aborted the connection.
2.589s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DDI" sending FIN because: "The connection was aborted by the application."
2.590s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDJ" accepted.
2.590s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDJ" started.
2.590s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request starting HTTP/1.1 POST http://127.0.0.1:50040/DynamicService/WaitUntilDeadline application/grpc-web 
2.590s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: 4 candidate(s) found for the request path '/DynamicService/WaitUntilDeadline'
2.590s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - /DynamicService/WaitUntilDeadline' with route pattern '/DynamicService/WaitUntilDeadline' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.590s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented method for DynamicService' with route pattern 'DynamicService/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.590s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented service' with route pattern '{unimplementedService}/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.590s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint '{FirstSegment}/{SecondSegment}' with route pattern '{FirstSegment}/{SecondSegment}' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.590s SERVER Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware - Debug: Request matched endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
2.590s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Detected gRPC-Web request from content-type 'application/grpc-web'.
2.590s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executing endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
2.590s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Reading message.
2.590s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDJ", Request id "0HLS2KJ507DDJ:00000001": started reading request body.
2.590s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Deserializing 7 byte message to 'Greet.HelloRequest'.
2.590s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Received message.
2.590s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDJ", Request id "0HLS2KJ507DDJ:00000001": done reading request body.
2.591s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDI" disconnecting.
2.604s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Sending message.
2.604s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Serialized 'Greet.HelloReply' to 0 byte message.
2.604s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error sending message.
2.605s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error when executing service method 'WaitUntilDeadline'.
2.605s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executed endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
2.605s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request finished in 131.00140000000002ms 200 application/grpc-web
2.605s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDH" stopped.
2.653s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Request with timeout of 00:00:00.0500000 has exceeded its deadline.
2.653s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Sending gRPC-Web response with content-type 'application/grpc-web'.
2.653s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: IHttpResetFeature is not available so unable to cleanly reset response stream. Aborting response stream.
2.653s SERVER Microsoft.AspNetCore.Server.Kestrel - Information: Connection id "0HLS2KJ507DDJ", Request id "0HLS2KJ507DDJ:00000001": the application aborted the connection.
2.653s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DDJ" sending FIN because: "The connection was aborted by the application."
2.654s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDK" accepted.
2.654s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDK" started.
2.654s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request starting HTTP/1.1 POST http://127.0.0.1:50040/DynamicService/WaitUntilDeadline application/grpc-web 
2.654s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: 4 candidate(s) found for the request path '/DynamicService/WaitUntilDeadline'
2.654s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - /DynamicService/WaitUntilDeadline' with route pattern '/DynamicService/WaitUntilDeadline' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.654s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented method for DynamicService' with route pattern 'DynamicService/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.654s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented service' with route pattern '{unimplementedService}/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.654s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint '{FirstSegment}/{SecondSegment}' with route pattern '{FirstSegment}/{SecondSegment}' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.654s SERVER Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware - Debug: Request matched endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
2.654s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Detected gRPC-Web request from content-type 'application/grpc-web'.
2.654s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executing endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
2.654s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Reading message.
2.654s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDK", Request id "0HLS2KJ507DDK:00000001": started reading request body.
2.654s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Deserializing 7 byte message to 'Greet.HelloRequest'.
2.654s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Received message.
2.654s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDK", Request id "0HLS2KJ507DDK:00000001": done reading request body.
2.655s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDJ" disconnecting.
2.667s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Sending message.
2.667s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Serialized 'Greet.HelloReply' to 0 byte message.
2.667s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error sending message.
2.667s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error when executing service method 'WaitUntilDeadline'.
2.667s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executed endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
2.667s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request finished in 135.2271ms 200 application/grpc-web
2.668s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDI" stopped.
2.715s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Request with timeout of 00:00:00.0500000 has exceeded its deadline.
2.715s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Sending gRPC-Web response with content-type 'application/grpc-web'.
2.715s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: IHttpResetFeature is not available so unable to cleanly reset response stream. Aborting response stream.
2.715s SERVER Microsoft.AspNetCore.Server.Kestrel - Information: Connection id "0HLS2KJ507DDK", Request id "0HLS2KJ507DDK:00000001": the application aborted the connection.
2.715s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DDK" sending FIN because: "The connection was aborted by the application."
2.717s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDK" disconnecting.
2.717s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDL" accepted.
2.717s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDL" started.
2.718s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request starting HTTP/1.1 POST http://127.0.0.1:50040/DynamicService/WaitUntilDeadline application/grpc-web 
2.718s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: 4 candidate(s) found for the request path '/DynamicService/WaitUntilDeadline'
2.718s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - /DynamicService/WaitUntilDeadline' with route pattern '/DynamicService/WaitUntilDeadline' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.718s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented method for DynamicService' with route pattern 'DynamicService/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.718s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented service' with route pattern '{unimplementedService}/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.718s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint '{FirstSegment}/{SecondSegment}' with route pattern '{FirstSegment}/{SecondSegment}' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.718s SERVER Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware - Debug: Request matched endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
2.718s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Detected gRPC-Web request from content-type 'application/grpc-web'.
2.718s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executing endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
2.718s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Reading message.
2.718s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDL", Request id "0HLS2KJ507DDL:00000001": started reading request body.
2.718s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Deserializing 7 byte message to 'Greet.HelloRequest'.
2.718s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Received message.
2.718s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDL", Request id "0HLS2KJ507DDL:00000001": done reading request body.
2.730s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Sending message.
2.730s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Serialized 'Greet.HelloReply' to 0 byte message.
2.730s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error sending message.
2.731s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error when executing service method 'WaitUntilDeadline'.
2.731s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executed endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
2.731s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request finished in 140.3594ms 200 application/grpc-web
2.731s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDJ" stopped.
2.778s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Sending message.
2.778s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Request with timeout of 00:00:00.0500000 has exceeded its deadline.
2.778s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Serialized 'Greet.HelloReply' to 0 byte message.
2.778s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Sending gRPC-Web response with content-type 'application/grpc-web'.
2.778s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error sending message.
2.778s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: IHttpResetFeature is not available so unable to cleanly reset response stream. Aborting response stream.
2.779s SERVER Microsoft.AspNetCore.Server.Kestrel - Information: Connection id "0HLS2KJ507DDL", Request id "0HLS2KJ507DDL:00000001": the application aborted the connection.
2.779s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error when executing service method 'WaitUntilDeadline'.
2.779s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DDL" sending FIN because: "The connection was aborted by the application."
2.779s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executed endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
2.779s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request finished in 124.8401ms 200 application/grpc-web
2.779s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDK" stopped.
2.780s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDM" accepted.
2.780s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDL" disconnecting.
2.780s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDM" started.
2.781s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request starting HTTP/1.1 POST http://127.0.0.1:50040/DynamicService/WaitUntilDeadline application/grpc-web 
2.781s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: 4 candidate(s) found for the request path '/DynamicService/WaitUntilDeadline'
2.781s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - /DynamicService/WaitUntilDeadline' with route pattern '/DynamicService/WaitUntilDeadline' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.781s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented method for DynamicService' with route pattern 'DynamicService/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.781s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented service' with route pattern '{unimplementedService}/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.781s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint '{FirstSegment}/{SecondSegment}' with route pattern '{FirstSegment}/{SecondSegment}' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.781s SERVER Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware - Debug: Request matched endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
2.781s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Detected gRPC-Web request from content-type 'application/grpc-web'.
2.781s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executing endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
2.781s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Reading message.
2.781s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDM", Request id "0HLS2KJ507DDM:00000001": started reading request body.
2.781s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Deserializing 7 byte message to 'Greet.HelloRequest'.
2.781s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Received message.
2.781s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDM", Request id "0HLS2KJ507DDM:00000001": done reading request body.
2.843s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Request with timeout of 00:00:00.0500000 has exceeded its deadline.
2.843s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Sending gRPC-Web response with content-type 'application/grpc-web'.
2.843s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: IHttpResetFeature is not available so unable to cleanly reset response stream. Aborting response stream.
2.843s SERVER Microsoft.AspNetCore.Server.Kestrel - Information: Connection id "0HLS2KJ507DDM", Request id "0HLS2KJ507DDM:00000001": the application aborted the connection.
2.843s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DDM" sending FIN because: "The connection was aborted by the application."
2.844s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDN" accepted.
2.844s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDN" started.
2.844s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request starting HTTP/1.1 POST http://127.0.0.1:50040/DynamicService/WaitUntilDeadline application/grpc-web 
2.845s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: 4 candidate(s) found for the request path '/DynamicService/WaitUntilDeadline'
2.845s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - /DynamicService/WaitUntilDeadline' with route pattern '/DynamicService/WaitUntilDeadline' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.845s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented method for DynamicService' with route pattern 'DynamicService/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.845s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented service' with route pattern '{unimplementedService}/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.845s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint '{FirstSegment}/{SecondSegment}' with route pattern '{FirstSegment}/{SecondSegment}' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.845s SERVER Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware - Debug: Request matched endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
2.845s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Detected gRPC-Web request from content-type 'application/grpc-web'.
2.845s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executing endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
2.845s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Reading message.
2.845s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDN", Request id "0HLS2KJ507DDN:00000001": started reading request body.
2.845s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Deserializing 7 byte message to 'Greet.HelloRequest'.
2.845s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Received message.
2.845s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDN", Request id "0HLS2KJ507DDN:00000001": done reading request body.
2.845s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDM" disconnecting.
2.856s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Sending message.
2.856s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Serialized 'Greet.HelloReply' to 0 byte message.
2.856s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error sending message.
2.856s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error when executing service method 'WaitUntilDeadline'.
2.856s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executed endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
2.857s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request finished in 138.7473ms 200 application/grpc-web
2.857s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDL" stopped.
2.901s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Request with timeout of 00:00:00.0500000 has exceeded its deadline.
2.901s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Sending gRPC-Web response with content-type 'application/grpc-web'.
2.901s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: IHttpResetFeature is not available so unable to cleanly reset response stream. Aborting response stream.
2.901s SERVER Microsoft.AspNetCore.Server.Kestrel - Information: Connection id "0HLS2KJ507DDN", Request id "0HLS2KJ507DDN:00000001": the application aborted the connection.
2.901s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DDN" sending FIN because: "The connection was aborted by the application."
2.902s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDO" accepted.
2.902s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDO" started.
2.902s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request starting HTTP/1.1 POST http://127.0.0.1:50040/DynamicService/WaitUntilDeadline application/grpc-web 
2.902s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: 4 candidate(s) found for the request path '/DynamicService/WaitUntilDeadline'
2.902s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - /DynamicService/WaitUntilDeadline' with route pattern '/DynamicService/WaitUntilDeadline' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.902s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented method for DynamicService' with route pattern 'DynamicService/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.902s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint 'gRPC - Unimplemented service' with route pattern '{unimplementedService}/{unimplementedMethod}' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.902s SERVER Microsoft.AspNetCore.Routing.Matching.DfaMatcher - Debug: Endpoint '{FirstSegment}/{SecondSegment}' with route pattern '{FirstSegment}/{SecondSegment}' is valid for the request path '/DynamicService/WaitUntilDeadline'
2.902s SERVER Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware - Debug: Request matched endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
2.902s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Detected gRPC-Web request from content-type 'application/grpc-web'.
2.902s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executing endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
2.902s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Reading message.
2.902s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDO", Request id "0HLS2KJ507DDO:00000001": started reading request body.
2.902s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Deserializing 7 byte message to 'Greet.HelloRequest'.
2.902s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Received message.
2.902s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDO", Request id "0HLS2KJ507DDO:00000001": done reading request body.
2.903s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDN" disconnecting.
2.918s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Sending message.
2.918s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Serialized 'Greet.HelloReply' to 0 byte message.
2.918s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error sending message.
2.919s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error when executing service method 'WaitUntilDeadline'.
2.919s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executed endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
2.919s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request finished in 137.929ms 200 application/grpc-web
2.919s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDM" stopped.
2.951s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Sending message.
2.951s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Serialized 'Greet.HelloReply' to 0 byte message.
2.951s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error sending message.
2.951s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error when executing service method 'WaitUntilDeadline'.
2.951s SERVER Microsoft.AspNetCore.Routing.EndpointMiddleware - Information: Executed endpoint 'gRPC - /DynamicService/WaitUntilDeadline'
2.951s SERVER Microsoft.AspNetCore.Hosting.Diagnostics - Information: Request finished in 106.9989ms 200 application/grpc-web
2.952s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDN" stopped.
2.964s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: Request with timeout of 00:00:00.0500000 has exceeded its deadline.
2.964s SERVER Grpc.AspNetCore.Web.Internal.GrpcWebMiddleware - Debug: Sending gRPC-Web response with content-type 'application/grpc-web'.
2.964s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Debug: IHttpResetFeature is not available so unable to cleanly reset response stream. Aborting response stream.
2.964s SERVER Microsoft.AspNetCore.Server.Kestrel - Information: Connection id "0HLS2KJ507DDO", Request id "0HLS2KJ507DDO:00000001": the application aborted the connection.
2.964s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DDO" sending FIN because: "The connection was aborted by the application."
2.964s SERVER Microsoft.AspNetCore.Server.Kestrel - Debug: Connection id "0HLS2KJ507DDO" disconnecting.
2.965s SERVER Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets - Debug: Connection id "0HLS2KJ507DDO" reset.
2.982s GrpcTestContext - Information: Finishing DeadlineTests.UnaryMethodDeadlineExceeded

@JamesNK
Copy link
Member

JamesNK commented Dec 17, 2019

Wireshark log. Error happens in the final request.

kestrel-http1-completeasync.zip

@Tratcher
Copy link
Member Author

There's no response for that final request. I don't see any indication from the logs as to why.

2.951s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Trace: Serialized 'Greet.HelloReply' to 0 byte message.
2.951s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error sending message.
2.951s SERVER Grpc.AspNetCore.Server.ServerCallHandler - Error: Error when executing service method 'WaitUntilDeadline'.

@JamesNK
Copy link
Member

JamesNK commented Dec 18, 2019

I think I know what the issue is:

endpoints.Map("CompleteAsyncError", async context =>
{
    System.IO.Pipelines.ReadResult result;
    do
    {
        result = await context.Request.BodyReader.ReadAsync();
        context.Request.BodyReader.AdvanceTo(result.Buffer.End);
    } while (result.IsCompleted);

    _ = RunCompleteAsync(context);

    await Task.Delay(500);

    await context.Response.BodyWriter.WriteAsync(Encoding.UTF8.GetBytes("Hello world"));
});

private async Task RunCompleteAsync(HttpContext context)
{
    await Task.Delay(10);

    await context.Response.BodyWriter.FlushAsync();
    await context.Response.BodyWriter.WriteAsync(Encoding.UTF8.GetBytes("Hello world"));
    await context.Response.CompleteAsync();
    context.Abort();
}

The issue shows up when HttpContext.Abort() happens immediately after Response.CompleteAsync(). There is some kind of race condition in HTTP/1.1.

@Tratcher
Copy link
Member Author

Ah. Abort in HTTP/1 closes the whole connection so that makes sense.

That said, you're doing unsafe multi-threading in this sample...

@JamesNK
Copy link
Member

JamesNK commented Dec 18, 2019

I was reproducing gRPC deadline conditions which are pretty unsafe. My guess was they were the problem. However it still happens when multi-threading is removed:

endpoints.Map("CompleteAsyncError", async context =>
{
    System.IO.Pipelines.ReadResult result;
    do
    {
        result = await context.Request.BodyReader.ReadAsync();
        context.Request.BodyReader.AdvanceTo(result.Buffer.End);
    } while (result.IsCompleted);

    await Task.Delay(10);

    await context.Response.BodyWriter.FlushAsync();
    await context.Response.BodyWriter.WriteAsync(Encoding.UTF8.GetBytes("Hello world"));
    await context.Response.CompleteAsync();
    context.Abort();
});

@JamesNK
Copy link
Member

JamesNK commented Dec 18, 2019

I worked around this issue by adding a fake IHttpResetFeature for HTTP/1.1 - grpc/grpc-dotnet@9e6890b#diff-888aafd42f8cabc26b28c1feccb3ed31R86-R91

HttpContext.Abort() was used in HTTP/2 to send RST_STREAM to a client that is still sending data. Neither JavaScript's xhr or HttpClient with HTTP/1.1 support duplex streaming so I don't think we need abort. Is that right?

@Tratcher
Copy link
Member Author

Neither JavaScript's xhr or HttpClient with HTTP/1.1 support duplex streaming so I don't think we need abort. Is that right?

Yeah, mocking out Reset to avoid an Abort is probably good for your scenario.

@Tratcher Tratcher removed this from the Backlog milestone Dec 20, 2019
@Tratcher
Copy link
Member Author

Clearing the milestone. It looks like we have some 5.x work to do for this scenario.

@halter73
Copy link
Member

This should already work. HttpResponsePipeWriter.ComplateAsync calls HttpProtocol.CompleteAsync which in turn call HttpProtocol.ProduceEnd which flushes the chunked terminator if necessary.

It wasn't until I recently merged #22575 to master that HttpResponsePipeWriter.CompleteAsync returned a Task that representing the completion of ProduceEnd, but flushing the connection PipeWriter doesn't guarantee that the chunked terminator has been written to the socket or acknowledged by the client anyway. Even after the change, aborting the HttpContext right after CompleteAsync could result in the client not receiving a chunked terminator.

Content-Length checks should happen though.

@halter73
Copy link
Member

Looks like I fixed this way back in 3.0.0-preview7 a couple weeks after the issue was filed and missed closing this issue. I even added a WhenAppWritesLessThanContentLengthCompleteThrowsAndErrorLogged test (#11675).

I just opened #26161 to add a ResponseBodyWriterCompleteFlushesChunkTerminator test.

@halter73 halter73 modified the milestones: Backlog, 3.0.0-preview7 Sep 22, 2020
@ghost ghost locked as resolved and limited conversation to collaborators Oct 22, 2020
@amcasey amcasey added area-networking Includes servers, yarp, json patch, bedrock, websockets, http client factory, and http abstractions and removed area-runtime labels Jun 2, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
area-networking Includes servers, yarp, json patch, bedrock, websockets, http client factory, and http abstractions enhancement This issue represents an ask for new feature or an enhancement to an existing one feature-kestrel
Projects
None yet
Development

No branches or pull requests

5 participants