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 <[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();
}