You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by nr...@apache.org on 2018/01/11 22:54:16 UTC

[geode] branch feature/GEODE-3583-storage updated: GEODE-4196: Fix missing throw statement

This is an automated email from the ASF dual-hosted git repository.

nreich pushed a commit to branch feature/GEODE-3583-storage
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/feature/GEODE-3583-storage by this push:
     new 5116c74  GEODE-4196: Fix missing throw statement
5116c74 is described below

commit 5116c74cf93060cc3b507476f28ebb85d0da6394
Author: Nick Reich <nr...@pivotal.io>
AuthorDate: Thu Jan 11 14:53:30 2018 -0800

    GEODE-4196: Fix missing throw statement
---
 .../apache/geode/distributed/internal/InternalDistributedSystem.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/geode-core/src/main/java/org/apache/geode/distributed/internal/InternalDistributedSystem.java b/geode-core/src/main/java/org/apache/geode/distributed/internal/InternalDistributedSystem.java
index eeeecb0..81f2325 100644
--- a/geode-core/src/main/java/org/apache/geode/distributed/internal/InternalDistributedSystem.java
+++ b/geode-core/src/main/java/org/apache/geode/distributed/internal/InternalDistributedSystem.java
@@ -2653,7 +2653,7 @@ public class InternalDistributedSystem extends DistributedSystem
                   LocalizedStrings.InternalDistributedSystem_SOME_REQUIRED_ROLES_MISSING
                       .toLocalizedString());
             } else {
-              internalCache.getCacheClosedException(
+              throw internalCache.getCacheClosedException(
                   LocalizedStrings.InternalDistributedSystem_SOME_REQUIRED_ROLES_MISSING
                       .toLocalizedString());
             }

-- 
To stop receiving notification emails like this one, please contact
['"commits@geode.apache.org" <co...@geode.apache.org>'].