anmolanmol1234 commented on code in PR #7817:
URL: https://github.com/apache/hadoop/pull/7817#discussion_r2260207006


##########
hadoop-tools/hadoop-azure/src/test/java/org/apache/hadoop/fs/azurebfs/ITestAzureBlobFileSystemListStatus.java:
##########
@@ -108,32 +108,32 @@ public void testListPath() throws Exception {
     config.set(AZURE_LIST_MAX_RESULTS, "5000");
     final AzureBlobFileSystem fs = (AzureBlobFileSystem) FileSystem
         .newInstance(getFileSystem().getUri(), config);
-      final List<Future<Void>> tasks = new ArrayList<>();
-
-      ExecutorService es = Executors.newFixedThreadPool(10);
-      for (int i = 0; i < TEST_FILES_NUMBER; i++) {
-        final Path fileName = new Path("/test" + i);
-        Callable<Void> callable = new Callable<Void>() {
-          @Override
-          public Void call() throws Exception {
-            touch(fileName);
-            return null;
-          }
-        };
-
-        tasks.add(es.submit(callable));
-      }
+    final List<Future<Void>> tasks = new ArrayList<>();

Review Comment:
   revert change



-- 
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.

To unsubscribe, e-mail: common-issues-unsubscr...@hadoop.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: common-issues-unsubscr...@hadoop.apache.org
For additional commands, e-mail: common-issues-h...@hadoop.apache.org

Reply via email to