Skip to content

Commit

Permalink
[jrubyscripting] Exception fixed in jruby 9.3.7.0
Browse files Browse the repository at this point in the history
The BootstrapMethodError should no longer be thrown by jruby since 9.3.7. Fixed in jruby/jruby#7271

Signed-off-by: Jimmy Tanagra <jcode@tanagra.id.au>
  • Loading branch information
jimtng committed Aug 17, 2022
1 parent d8d6257 commit 82d7eda
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -198,9 +198,6 @@ private synchronized void configureGems(ScriptEngine engine) {
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);
}
}

Expand Down

0 comments on commit 82d7eda

Please sign in to comment.