nsivabalan commented on code in PR #7037:
URL: https://github.com/apache/hudi/pull/7037#discussion_r1015081511
##########
hudi-client/hudi-client-common/src/main/java/org/apache/hudi/metadata/HoodieBackedTableMetadataWriter.java:
##########
@@ -656,7 +659,9 @@ private List<DirectoryInfo>
listAllPartitions(HoodieTableMetaClient datasetMetaC
partitionsToBootstrap.add(dirInfo);
} else {
// Add sub-dirs to the queue
- pathsToList.addAll(dirInfo.getSubDirectories());
+ pathsToList.addAll(dirInfo.getSubDirectories().stream()
+ .map(path -> new SerializablePath(new CachingPath(path.toUri())))
+ .collect(Collectors.toList()));
}
Review Comment:
yeah my bad. mixed up w/ another patch.
will revert it.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]