You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by jb...@apache.org on 2014/01/24 00:20:25 UTC

[2/5] git commit: include cause of configuration exception that Shouldn't Happen

include cause of configuration exception that Shouldn't Happen


Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo
Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/9771cea2
Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/9771cea2
Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/9771cea2

Branch: refs/heads/cassandra-2.0
Commit: 9771cea2186977adf406ad35cb54a10feae69591
Parents: 0eac408
Author: Jonathan Ellis <jb...@apache.org>
Authored: Fri Jan 24 08:19:49 2014 +0900
Committer: Jonathan Ellis <jb...@apache.org>
Committed: Fri Jan 24 08:19:49 2014 +0900

----------------------------------------------------------------------
 .../org/apache/cassandra/locator/AbstractReplicationStrategy.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra/blob/9771cea2/src/java/org/apache/cassandra/locator/AbstractReplicationStrategy.java
----------------------------------------------------------------------
diff --git a/src/java/org/apache/cassandra/locator/AbstractReplicationStrategy.java b/src/java/org/apache/cassandra/locator/AbstractReplicationStrategy.java
index e4dd422..d2f6085 100644
--- a/src/java/org/apache/cassandra/locator/AbstractReplicationStrategy.java
+++ b/src/java/org/apache/cassandra/locator/AbstractReplicationStrategy.java
@@ -271,7 +271,7 @@ public abstract class AbstractReplicationStrategy
         catch (ConfigurationException e)
         {
             // If that happens at this point, there is nothing we can do about it.
-            throw new RuntimeException();
+            throw new RuntimeException(e);
         }
     }