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

mmiller pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/accumulo.git

commit e95873343840c72196097bedfa487251cf50c284
Merge: 0338b93 82d8368
Author: Mike Miller <mmil...@apache.org>
AuthorDate: Thu Mar 1 14:01:28 2018 -0500

    Merge branch '1.8'

 .../java/org/apache/accumulo/core/client/impl/TableOperationsImpl.java | 3 +++
 1 file changed, 3 insertions(+)

diff --cc 
core/src/main/java/org/apache/accumulo/core/client/impl/TableOperationsImpl.java
index e4b34b5,aea8740..2518f8c
--- 
a/core/src/main/java/org/apache/accumulo/core/client/impl/TableOperationsImpl.java
+++ 
b/core/src/main/java/org/apache/accumulo/core/client/impl/TableOperationsImpl.java
@@@ -457,7 -425,10 +457,10 @@@ public class TableOperationsImpl extend
            // user would only have the stack trace for the background thread.
            if (excep instanceof TableNotFoundException) {
              TableNotFoundException tnfe = (TableNotFoundException) excep;
 -            throw new TableNotFoundException(tableId, tableName, "Table not 
found by background thread", tnfe);
 +            throw new TableNotFoundException(tableId.canonicalID(), 
tableName, "Table not found by background thread", tnfe);
+           } else if (excep instanceof TableOfflineException) {
+             log.debug("TableOfflineException occurred in background thread. 
Throwing new exception", excep);
 -            throw new TableOfflineException(context.getInstance(), tableId);
++            throw new TableOfflineException(context.getInstance(), 
tableId.canonicalID());
            } else if (excep instanceof AccumuloSecurityException) {
              // base == background accumulo security exception
              AccumuloSecurityException base = (AccumuloSecurityException) 
excep;

-- 
To stop receiving notification emails like this one, please contact
mmil...@apache.org.

Reply via email to