Skip to content

Commit

Permalink
PR feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesNK committed Oct 30, 2022
1 parent fd6dd2d commit b735e5d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Grpc.Net.Client/GrpcChannel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ private HttpMessageInvoker CreateInternalHttpInvoker(HttpMessageHandler? handler
"The channel is configured to use HttpClientHandler and Android's native HTTP/2 library. " +
"gRPC isn't fully supported by Android's native HTTP/2 library and it can cause runtime errors. " +
"To fix this problem, either configure the channel to use SocketsHttpHandler, or add " +
"<UseNativeHttpHandler>true</UseNativeHttpHandler> to the app's project file. " +
"<UseNativeHttpHandler>false</UseNativeHttpHandler> to the app's project file. " +
"For more information, see https://aka.ms/aspnet/grpc/android.");
}
}
Expand Down
2 changes: 1 addition & 1 deletion test/Grpc.Net.Client.Tests/GrpcChannelTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ public void HttpHandler_HttpClientHandlerOverNativeOnAndroid_ThrowError(bool use
"The channel is configured to use HttpClientHandler and Android's native HTTP/2 library. " +
"gRPC isn't fully supported by Android's native HTTP/2 library and it can cause runtime errors. " +
"To fix this problem, either configure the channel to use SocketsHttpHandler, or add " +
"<UseNativeHttpHandler>true</UseNativeHttpHandler> to the app's project file. " +
"<UseNativeHttpHandler>false</UseNativeHttpHandler> to the app's project file. " +
"For more information, see https://aka.ms/aspnet/grpc/android.");
}
finally
Expand Down

0 comments on commit b735e5d

Please sign in to comment.