Repository: incubator-blur
Updated Branches:
  refs/heads/master c65c81d9c -> 65640200a



Signed-off-by: Aaron McCurry <amccu...@gmail.com>


Project: http://git-wip-us.apache.org/repos/asf/incubator-blur/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-blur/commit/65640200
Tree: http://git-wip-us.apache.org/repos/asf/incubator-blur/tree/65640200
Diff: http://git-wip-us.apache.org/repos/asf/incubator-blur/diff/65640200

Branch: refs/heads/master
Commit: 65640200a8e7dd539c1dd4d920255c717102b9b2
Parents: c65c81d
Author: Harinder Singh <harindersingh...@gmail.com>
Authored: Mon Feb 8 21:02:16 2016 -0500
Committer: Aaron McCurry <amccu...@gmail.com>
Committed: Mon Feb 8 21:02:16 2016 -0500

----------------------------------------------------------------------
 blur-core/src/main/java/org/apache/blur/thrift/TableAdmin.java | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/65640200/blur-core/src/main/java/org/apache/blur/thrift/TableAdmin.java
----------------------------------------------------------------------
diff --git a/blur-core/src/main/java/org/apache/blur/thrift/TableAdmin.java 
b/blur-core/src/main/java/org/apache/blur/thrift/TableAdmin.java
index c55ce0a..ac5a8f6 100644
--- a/blur-core/src/main/java/org/apache/blur/thrift/TableAdmin.java
+++ b/blur-core/src/main/java/org/apache/blur/thrift/TableAdmin.java
@@ -415,7 +415,11 @@ public abstract class TableAdmin implements Iface {
       TableDescriptor tableDescriptor = 
_clusterStatus.getTableDescriptor(true, cluster, table);
       TableContext tableContext = TableContext.create(tableDescriptor);
       return tableContext.getDescriptor();
-    } catch (Exception e) {
+    }
+    catch(BException e){
+       throw e;
+    }
+    catch (Exception e) {
       LOG.error("Unknown error while trying to describe a table [" + table + 
"].", e);
       throw new BException("Unknown error while trying to describe a table [" 
+ table + "].", e);
     }

Reply via email to