[BUG] Fix ambiguous Node type reference in build.gradle - #22514
Conversation
|
❌ Gradle check result for 5125243: FAILURE Please examine the workflow log, locate, and copy-paste the failure(s) below, then iterate to green. Is the failure a flaky test unrelated to your change? |
I looked into the failure. It appears to be unrelated to this change. The failure is in
The Jenkins output indicates this test has been failing for the past 26 builds (Since Failed#82329), so it doesn't appear to have been introduced by this PR. My change only updates the build.gradle import and does not touch the HTTP or Netty request handling code. Could a maintainer please confirm whether this is a known flaky/pre-existing CI failure? |
|
❌ Gradle check result for 5125243: FAILURE Please examine the workflow log, locate, and copy-paste the failure(s) below, then iterate to green. Is the failure a flaky test unrelated to your change? |
Signed-off-by: revijay <reshmi.vijayan@ibm.com>
5125243 to
c3a9f68
Compare
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #22514 +/- ##
============================================
+ Coverage 71.42% 71.45% +0.02%
- Complexity 76786 76849 +63
============================================
Files 6148 6148
Lines 357980 357980
Branches 52177 52177
============================================
+ Hits 255689 255785 +96
+ Misses 81937 81857 -80
+ Partials 20354 20338 -16 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
Description
Fixes the ambiguous Node type reference in the root build.gradle.
Some Gradle environments may resolve Node to org.gradle.execution.plan.Node, causing a ClassCastException during Gradle execution. This change explicitly imports groovy.util.Node so the intended type is always used.
Related Issues
Resolves #19247
Check List
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.