This is an automated email from the ASF dual-hosted git repository.
epugh pushed a commit to branch branch_10x
in repository https://gitbox.apache.org/repos/asf/solr.git
The following commit(s) were added to refs/heads/branch_10x by this push:
new 438617b2044 SOLR-18106: Un-deprecate getCloudDescriptor, its required
for Coordinator mode (#4132)
438617b2044 is described below
commit 438617b20448348d706c2133b146068aa4662938
Author: Eric Pugh <[email protected]>
AuthorDate: Sun Feb 15 09:57:50 2026 -0500
SOLR-18106: Un-deprecate getCloudDescriptor, its required for Coordinator
mode (#4132)
Co-authored-by: David Smiley <[email protected]>
---
solr/core/src/java/org/apache/solr/request/SolrQueryRequest.java | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/solr/core/src/java/org/apache/solr/request/SolrQueryRequest.java
b/solr/core/src/java/org/apache/solr/request/SolrQueryRequest.java
index dc9d9b38fdc..a0ed740b928 100644
--- a/solr/core/src/java/org/apache/solr/request/SolrQueryRequest.java
+++ b/solr/core/src/java/org/apache/solr/request/SolrQueryRequest.java
@@ -187,10 +187,7 @@ public interface SolrQueryRequest extends AutoCloseable {
return core == null ? null : core.getCoreContainer();
}
- /**
- * @deprecated use getCore().getCoreDescriptor().getCloudDescriptor()
- */
- @Deprecated
+ /** The CloudDescriptor, which may be different from that of the core on the
coordinator. */
default CloudDescriptor getCloudDescriptor() {
return getCore().getCoreDescriptor().getCloudDescriptor();
}