wborn opened a new pull request, #1678: URL: https://github.com/apache/karaf/pull/1678
Since we now verify ~400 features in the openHAB Addons repo, the number of threads being leaked by the verify goal causes GitHub Actions builds to run out of memory. I did some investigation and found that the thread leak is caused by the VerifyMojo itself. For some reason the threads created by the executor are never garbage collected. --- The goal leaks 8 threads each time it is executed. So if you verify 400 features in a build it causes 3200 threads to be leaked:  --- When the executor is shutdown the verify goal no longer leaks threads. :slightly_smiling_face:  --- It would also be nice when the fix is cherry-picked to 4.3.x. -- 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]
