This is an automated email from the ASF dual-hosted git repository. dsmiley pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/solr.git
commit 491b9071b642bb4b6e1df6330a7adfb9b1943568 Author: David Smiley <[email protected]> AuthorDate: Sat May 3 00:13:53 2025 -0400 Deprecation: CommonParams.QT "qt" param (SOLR-17715) It's still being used but signal to everyone to stop using it. --- solr/solrj/src/java/org/apache/solr/common/params/CommonParams.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/solr/solrj/src/java/org/apache/solr/common/params/CommonParams.java b/solr/solrj/src/java/org/apache/solr/common/params/CommonParams.java index 1982c7a122b..4f4aafdaf5b 100644 --- a/solr/solrj/src/java/org/apache/solr/common/params/CommonParams.java +++ b/solr/solrj/src/java/org/apache/solr/common/params/CommonParams.java @@ -37,9 +37,11 @@ public interface CommonParams { /** * the Request Handler (formerly known as the Query Type) - which Request Handler should handle - * the request + * the request. + * + * @deprecated route requests by path instead, not using this parameter */ - String QT = "qt"; + @Deprecated String QT = "qt"; /** the response writer type - the format of the response */ String WT = "wt";
