Skip to content

Commit

Permalink
fix build warning: static grpc config should not have nullable grpc c…
Browse files Browse the repository at this point in the history
…hannel options object
  • Loading branch information
anitarua committed Mar 4, 2024
1 parent daaa54a commit 4a3c245
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class StaticGrpcConfiguration : IGrpcConfiguration
/// <inheritdoc/>
public int MinNumGrpcChannels { get; }
/// <inheritdoc/>
public GrpcChannelOptions? GrpcChannelOptions { get; }
public GrpcChannelOptions GrpcChannelOptions { get; }
/// <inheritdoc/>
public SocketsHttpHandlerOptions SocketsHttpHandlerOptions { get; }
/// <inheritdoc/>
Expand Down

0 comments on commit 4a3c245

Please sign in to comment.