kevinrr888 commented on code in PR #5670:
URL: https://github.com/apache/accumulo/pull/5670#discussion_r2162506824
##########
core/src/main/java/org/apache/accumulo/core/clientImpl/ClientContext.java:
##########
@@ -834,6 +834,17 @@ public ConditionalWriter createConditionalWriter(String
tableName) throws TableN
return createConditionalWriter(tableName, null);
}
+ public ConditionalWriter createConditionalWriterForFateTable(String
tableName)
+ throws TableNotFoundException {
+ ConditionalWriterImpl writer = (ConditionalWriterImpl)
createConditionalWriter(tableName);
Review Comment:
Ah missed the createConditionalWriter method that takes a config
Was added here since it was accessing a private method. Since I removed the
client property and replaced with a property, access to this method wasn't
needed anymore so moved the method to `UserFateStore`
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]