From 4a3c245d2d302cf7bedf874adf3503d6437bf237 Mon Sep 17 00:00:00 2001 From: anitarua Date: Mon, 4 Mar 2024 09:30:59 -0800 Subject: [PATCH] fix build warning: static grpc config should not have nullable grpc channel options object --- src/Momento.Sdk/Config/Transport/StaticTransportStrategy.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Momento.Sdk/Config/Transport/StaticTransportStrategy.cs b/src/Momento.Sdk/Config/Transport/StaticTransportStrategy.cs index 39167b5e..180f985b 100644 --- a/src/Momento.Sdk/Config/Transport/StaticTransportStrategy.cs +++ b/src/Momento.Sdk/Config/Transport/StaticTransportStrategy.cs @@ -17,7 +17,7 @@ public class StaticGrpcConfiguration : IGrpcConfiguration /// public int MinNumGrpcChannels { get; } /// - public GrpcChannelOptions? GrpcChannelOptions { get; } + public GrpcChannelOptions GrpcChannelOptions { get; } /// public SocketsHttpHandlerOptions SocketsHttpHandlerOptions { get; } ///