Skip to content
Open
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
@@ -0,0 +1,7 @@
title: Remove the deprecated CloudSolrClient.Builder.withInternalClientBuilder method; use withHttpClientBuilder instead.
type: removed
authors:
- name: Serhiy Bzhezytskyy
links:
- name: SOLR-18368
url: https://issues.apache.org/jira/browse/SOLR-18368
Original file line number Diff line number Diff line change
Expand Up @@ -1592,12 +1592,6 @@ public Builder withHttpClientBuilder(HttpSolrClient.BuilderBase<?, ?> internalCl
return this;
}

@Deprecated(since = "9.10")
public Builder withInternalClientBuilder(
HttpSolrClient.BuilderBase<?, ?> internalClientBuilder) {
return withHttpClientBuilder(internalClientBuilder);
}

/**
* Sets the Zk connection timeout
*
Expand Down
Loading