You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@geode.apache.org by "Darrel Schneider (JIRA)" <ji...@apache.org> on 2018/02/03 01:03:00 UTC

[jira] [Updated] (GEODE-3944) Geode node is not able to start normally without spring-shell library anymore

     [ https://issues.apache.org/jira/browse/GEODE-3944?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Darrel Schneider updated GEODE-3944:
------------------------------------
    Component/s:     (was: core)

> Geode node is not able to start normally without spring-shell library anymore
> -----------------------------------------------------------------------------
>
>                 Key: GEODE-3944
>                 URL: https://issues.apache.org/jira/browse/GEODE-3944
>             Project: Geode
>          Issue Type: Bug
>          Components: management
>    Affects Versions: 1.3.0
>            Reporter: Vadim Lotarev
>            Priority: Trivial
>
> Starting from version 1.3.0 Geode cache is not able to start normally if spring-shell library is not available. This library is needed in order to implement gfsh commands and should not be required for any node. Everything worked just fine until new class {{OnlineCommandProcessor}} is introduced. Now, when attempt to create it failed (because of absence of spring-shell) {{java.lang.NoClassDefFoundError: org/springframework/shell/core/Parser}} is fired. This class is not an {{Exception}} so the following catch block is skipped and MemberMBean (as well as ManagementService) is not initialized as a result:
> {code}
>     try {
>       this.commandProcessor =
>           new OnlineCommandProcessor(system.getProperties(), cache.getSecurityService());
>     } catch (Exception e) {
>       commandServiceInitError = e.getMessage();
>       logger.info(LogMarker.CONFIG, "Command processor could not be initialized. {}",
>           e.getMessage());
>     }
> {code}
> Probably, the best fix would be to catch {{Throwable}} instead of {{Exception}}.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)