sv2000 commented on a change in pull request #2633: GOBBLIN-759: Added feature to support DistCP to copy files that were … URL: https://github.com/apache/incubator-gobblin/pull/2633#discussion_r388083153
########## File path: gobblin-data-management/src/main/java/org/apache/gobblin/data/management/copy/TimestampBasedCopyableDataset.java ########## @@ -121,8 +119,8 @@ public TimestampBasedCopyableDataset(FileSystem fs, Properties props, Path datas ConcurrentLinkedQueue<CopyableFile> copyableFileList = new ConcurrentLinkedQueue<>(); List<Future<?>> futures = Lists.newArrayList(); for (TimestampedDatasetVersion copyableVersion : copyableVersions) { - futures.add(this.executor.submit(this.getCopyableFileGenetator(targetFs, configuration, copyableVersion, - copyableFileList))); + futures.add(this.executor.submit( + this.getCopyableFileGenetator(targetFs, configuration, copyableVersion, copyableFileList))); Review comment: Typo: this.getCopyableFileGenerator ---------------------------------------------------------------- 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: us...@infra.apache.org With regards, Apache Git Services