Merge branch '3.5.x' into 4.0.x

Closes gh-48812
This commit is contained in:
Andy Wilkinson
2026-01-13 16:52:51 +00:00
@@ -110,7 +110,7 @@ public class ProcessInfo {
int poolSize = invokeMethod(mxbeanClass, mxbean, "getPoolSize");
return new VirtualThreadsInfo(mountedVirtualThreadCount, queuedVirtualThreadCount, parallelism, poolSize);
}
catch (ReflectiveOperationException ex) {
catch (Exception ex) {
return null;
}
}