You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by vj...@apache.org on 2021/02/18 06:26:47 UTC

[hbase] branch branch-2 updated: HBASE-25541 : Setting the path to null when we dequeue the current log (#2959)

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

vjasani pushed a commit to branch branch-2
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/branch-2 by this push:
     new ec680c5  HBASE-25541 : Setting the path to null when we dequeue the current log (#2959)
ec680c5 is described below

commit ec680c52e01cacf1c8c979b88151e65c3ddd2101
Author: Sandeep Pal <50...@users.noreply.github.com>
AuthorDate: Wed Feb 17 22:23:52 2021 -0800

    HBASE-25541 : Setting the path to null when we dequeue the current log (#2959)
    
    Signed-off-by: Bharath Vissapragada <bh...@apache.org>
---
 .../org/apache/hadoop/hbase/replication/regionserver/WALEntryStream.java | 1 +
 1 file changed, 1 insertion(+)

diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/WALEntryStream.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/WALEntryStream.java
index 7e67f53..752872a 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/WALEntryStream.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/WALEntryStream.java
@@ -252,6 +252,7 @@ class WALEntryStream implements Closeable {
     LOG.debug("EOF, closing {}", currentPath);
     closeReader();
     logQueue.remove();
+    setCurrentPath(null);
     setPosition(0);
     metrics.decrSizeOfLogQueue();
   }