You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by zh...@apache.org on 2022/11/05 14:45:22 UTC

[hbase] branch master updated: HBASE-27414 Adjust hfilelink alternative paths order (#4847)

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

zhangduo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/master by this push:
     new 1bebf8699fd HBASE-27414 Adjust hfilelink alternative paths order (#4847)
1bebf8699fd is described below

commit 1bebf8699fd2f03e88dcd37cb9dc7d20bacfa3f2
Author: Ruanhui <32...@users.noreply.github.com>
AuthorDate: Sat Nov 5 22:45:10 2022 +0800

    HBASE-27414 Adjust hfilelink alternative paths order (#4847)
    
    Co-authored-by: huiruan <hu...@tencent.com>
    Signed-off-by: Duo Zhang <zh...@apache.org>
    Signed-off-by: Lijin Bin <bi...@apache.org>
---
 hbase-server/src/main/java/org/apache/hadoop/hbase/io/HFileLink.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/io/HFileLink.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/io/HFileLink.java
index 4184d6ca21e..84323e5c659 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/io/HFileLink.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/io/HFileLink.java
@@ -100,7 +100,7 @@ public class HFileLink extends FileLink {
     this.originPath = originPath;
     this.mobPath = mobPath;
     this.archivePath = archivePath;
-    setLocations(originPath, tempPath, mobPath, archivePath);
+    setLocations(originPath, archivePath, tempPath, mobPath);
   }
 
   /**