You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@accumulo.apache.org by GitBox <gi...@apache.org> on 2022/08/04 14:52:52 UTC

[GitHub] [accumulo] milleruntime commented on a diff in pull request #2845: Fix fate debug message. Closes #2838

milleruntime commented on code in PR #2845:
URL: https://github.com/apache/accumulo/pull/2845#discussion_r937892170


##########
core/src/main/java/org/apache/accumulo/core/clientImpl/AcceptableThriftTableOperationException.java:
##########
@@ -30,9 +30,44 @@ public class AcceptableThriftTableOperationException extends ThriftTableOperatio
     implements AcceptableException {
 
   private static final long serialVersionUID = 1L;
+  String tableId;
+  String tableName;
+  TableOperation op;
+  TableOperationExceptionType type;
+  String description;
 
   public AcceptableThriftTableOperationException(String tableId, String tableName,
       TableOperation op, TableOperationExceptionType type, String description) {
     super(tableId, tableName, op, type, description);
+    this.tableId = tableId;
+    this.tableName = tableName;
+    this.op = op;
+    this.type = type;
+    this.description = description;
+  }
+
+  @Override
+  public String getTableId() {
+    return tableId;
+  }
+
+  @Override
+  public String getTableName() {
+    return tableName;
+  }
+
+  @Override
+  public TableOperation getOp() {
+    return op;
+  }
+
+  @Override
+  public TableOperationExceptionType getType() {
+    return type;
+  }
+
+  @Override
+  public String getDescription() {
+    return description;

Review Comment:
   Yeah, I dropped them.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@accumulo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org