cxzl25 commented on PR #2544:
URL: https://github.com/apache/celeborn/pull/2544#issuecomment-2363193226
> will the bug only be triggered on compile time? or include the runtime?
I did a simple test, it was only triggered during the compile phase, and no
error was reported when the runtime was replaced with 3.14.0.
```scala
object TestLang3 {
def main(args: Array[String]): Unit = {
println(org.apache.commons.lang3.SystemUtils.isJavaVersionAtLeast(org.apache.commons.lang3.JavaVersion.JAVA_21))
}
}
```
```bash
java -cp scala-library-2.12.15.jar:commons-lang3-3.13.0.jar:. TestLang3
false
java -cp scala-library-2.12.15.jar:commons-lang3-3.14.0.jar:. TestLang3
false
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]