Github user poornachandra commented on a diff in the pull request:

    https://github.com/apache/incubator-tephra/pull/32#discussion_r100042824
  
    --- Diff: 
tephra-hbase-compat-1.1-base/src/test/java/org/apache/tephra/hbase/txprune/InvalidListPruneTest.java
 ---
    @@ -360,8 +404,18 @@ public TransactionStateCache get() {
         @Override
         public void postCompact(ObserverContext<RegionCoprocessorEnvironment> 
e, Store store, StoreFile resultFile,
                                 CompactionRequest request) throws IOException {
    -      super.postCompact(e, store, resultFile, request);
    -      lastMajorCompactionTime.set(System.currentTimeMillis());
    +      synchronized (compactionLock) {
    +        super.postCompact(e, store, resultFile, request);
    +        lastMajorCompactionTime.set(System.currentTimeMillis());
    +      }
    +    }
    +
    +    @Override
    +    public void stop(CoprocessorEnvironment e) throws IOException {
    +      synchronized (stopLock) {
    +        System.out.println("*********** Stopping " + 
this.getClass().getName());
    --- End diff --
    
    Remove the debug println


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to