We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edee766 commit a9bbc75Copy full SHA for a9bbc75
opensearch/src/test/java/zipkin2/storage/elasticsearch/OpensearchContainer.java
@@ -46,8 +46,7 @@ class OpensearchContainer extends GenericContainer<OpensearchContainer> {
46
47
ElasticsearchStorage.Builder newStorageBuilder() {
48
49
- WebClientBuilder builder = WebClient.builder("http://" + hostPort())
50
- .factory(ClientFactory.builder().build());
+ WebClientBuilder builder = WebClient.builder("http://" + hostPort());
51
builder.decorator((delegate, ctx, req) -> {
52
final HttpResponse response = delegate.execute(ctx, req);
53
return HttpResponse.of(response.aggregate().thenApply(r -> {
0 commit comments