Don't hard fail on plugin remap error

Closes #10474
This commit is contained in:
Nassim Jahnke 2024-04-28 17:25:31 +02:00
parent da3ca7a40d
commit 2355f31613

View File

@ -701,7 +701,8 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
+ try {
+ collector.throwIfPresent();
+ } catch (final Exception ex) {
+ throw new RuntimeException("Encountered exception remapping plugins", ex);
+ // Don't hard fail during bootstrap/plugin loading. The plugin(s) in question will be skipped
+ LOGGER.error("Encountered exception remapping plugins", ex);
+ }
+ return ret;
+ }