Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -824,7 +824,8 @@ public Map<String, Supplier<Transport>> getTransports(
PageCacheRecycler pageCacheRecycler,
CircuitBreakerService circuitBreakerService,
NamedWriteableRegistry namedWriteableRegistry,
NetworkService networkService
NetworkService networkService,
Tracer tracer
) {
Map<String, Supplier<Transport>> transports = new HashMap<String, Supplier<Transport>>();

Expand All @@ -835,7 +836,8 @@ public Map<String, Supplier<Transport>> getTransports(
pageCacheRecycler,
circuitBreakerService,
namedWriteableRegistry,
networkService
networkService,
tracer
);
}

Expand All @@ -853,7 +855,8 @@ public Map<String, Supplier<Transport>> getTransports(
sks,
evaluateSslExceptionHandler(),
sharedGroupFactory,
SSLConfig
SSLConfig,
tracer
)
);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,8 @@ public Map<String, Supplier<Transport>> getTransports(
PageCacheRecycler pageCacheRecycler,
CircuitBreakerService circuitBreakerService,
NamedWriteableRegistry namedWriteableRegistry,
NetworkService networkService
NetworkService networkService,
Tracer tracer
) {

Map<String, Supplier<Transport>> transports = new HashMap<String, Supplier<Transport>>();
Expand All @@ -333,7 +334,8 @@ public Map<String, Supplier<Transport>> getTransports(
sks,
NOOP_SSL_EXCEPTION_HANDLER,
sharedGroupFactory,
SSLConfig
SSLConfig,
tracer
)
);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@
import org.opensearch.security.ssl.util.SSLConfigConstants;
import org.opensearch.security.ssl.util.SSLConnectionTestResult;
import org.opensearch.security.ssl.util.SSLConnectionTestUtil;
import org.opensearch.telemetry.tracing.Tracer;
import org.opensearch.threadpool.ThreadPool;
import org.opensearch.transport.SharedGroupFactory;
import org.opensearch.transport.TcpChannel;
Expand All @@ -82,7 +83,8 @@ public SecuritySSLNettyTransport(
final SecurityKeyStore ossks,
final SslExceptionHandler errorHandler,
SharedGroupFactory sharedGroupFactory,
final SSLConfig SSLConfig
final SSLConfig SSLConfig,
final Tracer tracer
) {
super(
settings,
Expand All @@ -92,7 +94,8 @@ public SecuritySSLNettyTransport(
pageCacheRecycler,
namedWriteableRegistry,
circuitBreakerService,
sharedGroupFactory
sharedGroupFactory,
tracer
);

this.ossks = ossks;
Expand Down