@@ -978,6 +978,8 @@ public void OtelMetricExportTimeoutCustomValues(string value, int expected)
978978 [ InlineData ( "invalid" , null , OtlpProtocol . Grpc ) ]
979979 [ InlineData ( "http/protobuf" , null , OtlpProtocol . HttpProtobuf ) ]
980980 [ InlineData ( "grpc" , "http/protobuf" , OtlpProtocol . Grpc ) ]
981+ [ InlineData ( null , "http/protobuf" , OtlpProtocol . HttpProtobuf ) ]
982+ [ InlineData ( null , "grpc" , OtlpProtocol . Grpc ) ]
981983 public void OtlpProtocolFallbacks ( string metricsProtocol , string generalProtocol , object expected )
982984 {
983985 var source = CreateConfigurationSource (
@@ -1073,6 +1075,8 @@ public void PartialFlushMinSpans(string value, int expected)
10731075 [ InlineData ( "invalid" , null , OtlpProtocol . Grpc ) ]
10741076 [ InlineData ( "http/protobuf" , null , OtlpProtocol . HttpProtobuf ) ]
10751077 [ InlineData ( "grpc" , "http/protobuf" , OtlpProtocol . Grpc ) ]
1078+ [ InlineData ( null , "http/protobuf" , OtlpProtocol . HttpProtobuf ) ]
1079+ [ InlineData ( null , "grpc" , OtlpProtocol . Grpc ) ]
10761080 public void OtlpLogsProtocolFallbacks ( string logsProtocol , string generalProtocol , object expected )
10771081 {
10781082 var source = CreateConfigurationSource (
0 commit comments