From 2355f31613c007b1aa40de7c3c502237a3efca0e Mon Sep 17 00:00:00 2001 From: Nassim Jahnke Date: Sun, 28 Apr 2024 17:25:31 +0200 Subject: [PATCH] Don't hard fail on plugin remap error Closes #10474 --- patches/server/Plugin-remapping.patch | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/patches/server/Plugin-remapping.patch b/patches/server/Plugin-remapping.patch index 08c368cae5..7e66e41726 100644 --- a/patches/server/Plugin-remapping.patch +++ b/patches/server/Plugin-remapping.patch @@ -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; + }