DEV Community

Amadou Badiane
Amadou Badiane

Posted on

Errors while Upgrading from springboot 2.5.8 to 2.6.0

Hi guys,

I'm working on a springboot project. it's working perfectly fine when i do a mvn clean verify with the springboot 2.5.8. But as soon as i upgrade to 2.6.0 in my pom.xml, it crashes during the tests (skiptests works fine in 2.6.0). Can you help we with that please ? (My goal is to upgrade to springboot 3. But i'm stuck in 2.6.0. Here is the error I'm getting :

# Created at 2023-04-20T16:09:58.241
System.exit() or native command error interrupted process checker.
java.lang.IllegalStateException: error [STOPPED] to read process 4920
    at org.apache.maven.surefire.booter.PpidChecker.checkProcessInfo(PpidChecker.java:145)
    at org.apache.maven.surefire.booter.PpidChecker.isProcessAlive(PpidChecker.java:116)
    at org.apache.maven.surefire.booter.ForkedBooter$2.run(ForkedBooter.java:214)
    at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
    at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305)
    at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305)
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
    at java.base/java.lang.Thread.run(Thread.java:833)
Enter fullscreen mode Exit fullscreen mode

Top comments (0)