[jrubyscripting] Update to jruby 9.3.7.0 to fix BootstrapMethodError (#13280)

* [jrubyscripting] Update to jruby 9.3.7.0
* [jrubyscripting] Exception fixed in jruby 9.3.7.0

The BootstrapMethodError should no longer be thrown by jruby since 9.3.7. Fixed in https://github.com/jruby/jruby/pull/7271

Signed-off-by: Jimmy Tanagra <jcode@tanagra.id.au>
This commit is contained in:
jimtng
2022-08-18 00:36:12 +10:00
committed by GitHub
parent 7e9e0dbdf2
commit 3de0f79d9a
2 changed files with 1 additions and 4 deletions

View File

@@ -198,9 +198,6 @@ public class JRubyScriptEngineConfiguration {
engine.eval(gemCommand);
} catch (ScriptException e) {
logger.warn("Error installing Gems: {}", e.getMessage());
} catch (BootstrapMethodError e) {
logger.warn("Error while checking/installing gems: {}. You may need to restart OpenHAB", e.getMessage());
logger.debug("Error in configureGems", e);
}
}