This is an automated email from the ASF dual-hosted git repository.

dsmiley pushed a commit to branch branch_9_10
in repository https://gitbox.apache.org/repos/asf/solr.git

commit a36c3b511dbd56e929d93f2b2ed7cf94adb436e9
Author: David Smiley <[email protected]>
AuthorDate: Sat Jan 31 18:27:21 2026 -0500

    modules/analytics: build.gradle: warnings shouldn't error
    
    Suppressing intermittent warnings (that fail the build) relating to 
floating point constants in FilterFunctionTest.multiValueFloatTest
---
 solr/modules/analytics/build.gradle | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/solr/modules/analytics/build.gradle 
b/solr/modules/analytics/build.gradle
index 393174449b9..25a98bf3325 100644
--- a/solr/modules/analytics/build.gradle
+++ b/solr/modules/analytics/build.gradle
@@ -35,3 +35,8 @@ dependencies {
   testImplementation 'junit:junit'
   testImplementation 'org.slf4j:slf4j-api'
 }
+
+// Disable treating warnings as errors for this module
+tasks.withType(JavaCompile) {
+  options.compilerArgs -= "-Werror"
+}

Reply via email to