dlmarion commented on a change in pull request #2329:
URL: https://github.com/apache/accumulo/pull/2329#discussion_r751167001
##########
File path: core/src/main/java/org/apache/accumulo/fate/ZooStore.java
##########
@@ -529,4 +527,16 @@ public long timeCreated(long tid) {
return dops;
}
}
+
+ /**
+ * Attempt to cancel the reserved transaction by interrupting the Thread
that is running it
+ *
+ * @param tid
+ * transaction id
+ */
+ public void cancel(long tid) {
+ if (reserved.containsKey(tid)) {
Review comment:
Addressed in d5df49354bf83d9174445c5e669936bb5cdf473e
--
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]