diff --git a/src/Elastic.Transport/Components/Pipeline/BoundConfiguration.cs b/src/Elastic.Transport/Components/Pipeline/BoundConfiguration.cs index c62e4aa..ead13a9 100644 --- a/src/Elastic.Transport/Components/Pipeline/BoundConfiguration.cs +++ b/src/Elastic.Transport/Components/Pipeline/BoundConfiguration.cs @@ -57,8 +57,8 @@ public BoundConfiguration(ITransportConfiguration global, IRequestConfiguration? AllowedStatusCodes = local?.AllowedStatusCodes ?? EmptyReadOnly.Collection; ClientCertificates = local?.ClientCertificates ?? global.ClientCertificates; TransferEncodingChunked = local?.TransferEncodingChunked ?? global.TransferEncodingChunked ?? false; - EnableTcpStats = local?.EnableTcpStats ?? global.EnableTcpStats ?? true; - EnableThreadPoolStats = local?.EnableThreadPoolStats ?? global.EnableThreadPoolStats ?? true; + EnableTcpStats = local?.EnableTcpStats ?? global.EnableTcpStats ?? false; + EnableThreadPoolStats = local?.EnableThreadPoolStats ?? global.EnableThreadPoolStats ?? false; ParseAllHeaders = local?.ParseAllHeaders ?? global.ParseAllHeaders ?? false; ResponseHeadersToParse = local is not null ? new HeadersList(local.ResponseHeadersToParse, global.ResponseHeadersToParse)