ctubbsii commented on a change in pull request #1579: Closes #1576: Update 
importTable with directory list as Set<String>
URL: https://github.com/apache/accumulo/pull/1579#discussion_r404951306
 
 

 ##########
 File path: test/src/main/java/org/apache/accumulo/test/ImportExportIT.java
 ##########
 @@ -151,7 +151,8 @@ public void testExportImportThenScan() throws Exception {
       log.info("Import dir B: {}", Arrays.toString(fs.listStatus(importDirB)));
 
       // Import the exported data into a new table
-      client.tableOperations().importTable(destTable, importDirDlm);
+      client.tableOperations().importTable(destTable,
+          Set.of(importDirA.toString(), importDirB.toString()));
 
 Review comment:
   If you define this set earlier, you wouldn't need to manually concatenate 
them for the log message, because you could just rely on `Set.toString()`.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to