This is an automated email from the ASF dual-hosted git repository. dsmiley pushed a commit to branch branch_10_0 in repository https://gitbox.apache.org/repos/asf/solr.git
commit 6d59736c8d8894aa15cf514031ed7cca772ae315 Author: David Smiley <[email protected]> AuthorDate: Sun Nov 30 22:24:06 2025 -0500 SOLR-17996: Correct changelog -- again. --- changelog/unreleased/SOLR-17996-requestWithBaseUrl.yml | 2 +- solr/solr-ref-guide/modules/deployment-guide/pages/solrj.adoc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/changelog/unreleased/SOLR-17996-requestWithBaseUrl.yml b/changelog/unreleased/SOLR-17996-requestWithBaseUrl.yml index 814187a7635..fed7203431c 100644 --- a/changelog/unreleased/SOLR-17996-requestWithBaseUrl.yml +++ b/changelog/unreleased/SOLR-17996-requestWithBaseUrl.yml @@ -1,5 +1,5 @@ # See https://github.com/apache/solr/blob/main/dev-docs/changelog.adoc -title: New SolrJ SolrRequest.requestWithBaseUrl, new HttpSolrClientBase.processWithBaseUrl. Existing callers will require updates due to a signature change. +title: New SolrJ SolrRequest.processWithBaseUrl, new HttpSolrClientBase.requestWithBaseUrl. Existing callers will require updates due to a signature change. type: other # added, changed, fixed, deprecated, removed, dependency_update, security, other authors: - name: David Smiley diff --git a/solr/solr-ref-guide/modules/deployment-guide/pages/solrj.adoc b/solr/solr-ref-guide/modules/deployment-guide/pages/solrj.adoc index 3913d16e3a9..c96421826cc 100644 --- a/solr/solr-ref-guide/modules/deployment-guide/pages/solrj.adoc +++ b/solr/solr-ref-guide/modules/deployment-guide/pages/solrj.adoc @@ -115,7 +115,7 @@ Unless otherwise specified, SolrJ expects these URLs to point to the root Solr p A few notable exceptions to this are described below: - *HttpJettySolrClient* & *HttpJdkSolrClient* - Users of these may choose to skip providing a root URL to their client, in favor of specifying the URL as an argument for the `requestWithBaseUrl` method. -Calling any other `request` methods on a URL-less `HttpJettySolrClient` will result in an `IllegalArgumentException`. +Calling any other `request` methods on a URL-less client will result in an `IllegalArgumentException`. - *LBSolrClient* - Solr's "load balancing" client is frequently used to round-robin requests across a set of replicas or cores. URLs are still expected to point to the Solr root (i.e. "/solr"), but to support this use-case the URLs are often supplemented by an additional parameter to specify the targeted core. Alternatively, some "load balancing" methods make use of an `Endpoint` abstraction to provide this URL and core information in a more structured way.
