sdedic opened a new pull request, #6548: URL: https://github.com/apache/netbeans/pull/6548
I've worked with Micronaut 4.1.x. The project is apparently configured differently than the previous version ... so other problems surfaced. #6537 was caused by a `StackOverflowError` - during dumping of complex structures, the traversal was not guarded against recursing through loop links inside the structure. This was fixed by noting the dumped instance in a Map and preventing the recursion if the dumper encounters that instance again. #6536 was more tricky - it seems that `getResolvedConfiguration` and maybe other calls throw `ArtifactResolveException` for artifacts not yet in the local cache. The exception was not caught / detected properly and was treated as a load error. Now the entire analysis is wrapped by a guard, that rethrows those exceptions as `NeedOnlineModeException`, handled by the project loader. -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
