You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by zg...@apache.org on 2020/06/19 06:51:08 UTC

[hbase] branch branch-2 updated: HBASE-24516 Parameter copyFiles should be passed in SecureBulkLoadClient (#1868)

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

zghao 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 c482ba8  HBASE-24516 Parameter copyFiles should be passed in SecureBulkLoadClient (#1868)
c482ba8 is described below

commit c482ba866c1e2ea29c6f3a13bf16be4f7850459b
Author: QilinCao <ca...@zte.com.cn>
AuthorDate: Fri Jun 19 14:48:42 2020 +0800

    HBASE-24516 Parameter copyFiles should be passed in SecureBulkLoadClient (#1868)
    
    Signed-off-by: Guanghao Zhang <zg...@apache.org>
---
 .../main/java/org/apache/hadoop/hbase/client/SecureBulkLoadClient.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/SecureBulkLoadClient.java b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/SecureBulkLoadClient.java
index cb258e4..f02f61e 100644
--- a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/SecureBulkLoadClient.java
+++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/SecureBulkLoadClient.java
@@ -138,7 +138,7 @@ public class SecureBulkLoadClient {
     final Token<?> userToken, final String bulkToken,
     boolean copyFiles) throws IOException {
     return secureBulkLoadHFiles(client, familyPaths, regionName, assignSeqNum, userToken,
-      bulkToken, false, null, true);
+      bulkToken, copyFiles, null, true);
   }
 
   public boolean secureBulkLoadHFiles(final ClientService.BlockingInterface client,