You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@geode.apache.org by "ASF GitHub Bot (JIRA)" <ji...@apache.org> on 2017/06/05 21:30:04 UTC

[jira] [Commented] (GEODE-3033) NPE when jarFileNames is null in ClusterConfigurationLoader

    [ https://issues.apache.org/jira/browse/GEODE-3033?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16037628#comment-16037628 ] 

ASF GitHub Bot commented on GEODE-3033:
---------------------------------------

Github user YehEmily commented on the issue:

    https://github.com/apache/geode/pull/561
  
    Precheckin in progress!


> NPE when jarFileNames is null in ClusterConfigurationLoader
> -----------------------------------------------------------
>
>                 Key: GEODE-3033
>                 URL: https://issues.apache.org/jira/browse/GEODE-3033
>             Project: Geode
>          Issue Type: Bug
>          Components: gfsh
>            Reporter: Emily Yeh
>            Assignee: Emily Yeh
>
> (Copied from original email by Barry Oglesby)
> I got this NPE attempting to roll from 9.0.4 to develop (starting a develop server using a 9.0.4 locator):
> {code}
> Exception in thread "main" java.lang.NullPointerException
> 	at java.util.Arrays.stream(Arrays.java:5004)
> 	at java.util.stream.Stream.of(Stream.java:1000)
> 	at org.apache.geode.internal.cache.ClusterConfigurationLoader.deployJarsReceivedFromClusterConfiguration(ClusterConfigurationLoader.java:75)
> 	at org.apache.geode.internal.cache.GemFireCacheImpl.deployJarsReceivedFromClusterConfiguration(GemFireCacheImpl.java:1033)
> 	at org.apache.geode.internal.cache.GemFireCacheImpl.initialize(GemFireCacheImpl.java:1150)
> 	at org.apache.geode.internal.cache.GemFireCacheImpl.basicCreate(GemFireCacheImpl.java:758)
> 	at org.apache.geode.internal.cache.GemFireCacheImpl.create(GemFireCacheImpl.java:745)
> 	at org.apache.geode.cache.CacheFactory.create(CacheFactory.java:
> {code}    
> In this case, jarFileNames is null, so this line fails:
> {code}logger.info("Got response with jars: {}", Stream.of(jarFileNames).collect(joining(",")));{code}
> Moving the logger message inside the null checks fixes the issue:
> {code}if (jarFileNames != null && jarBytes != null) {
>   logger.info("Got response with jars: {}", Stream.of(jarFileNames).collect(joining(",")));{code}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)