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

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


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

commit f637a609921c5ed9d9d894b7e4611dc1526ed29e
Author: Sandeep Pal <[email protected]>
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 <[email protected]>
---
 .../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();
   }

Reply via email to