1
0

Removing extraneous warn logs in ClusteringUtils (#4553)

This commit is contained in:
Sivabalan Narayanan
2022-01-10 21:50:14 -05:00
committed by GitHub
parent f1e3762a94
commit 67ad4992e1

View File

@@ -90,7 +90,6 @@ public class ClusteringUtils {
Option<byte[]> content = metaClient.getActiveTimeline().getInstantDetails(requestedInstant);
if (!content.isPresent() || content.get().length == 0) {
// few operations create requested file without any content. Assume these are not clustering
LOG.warn("No content found in requested file for instant " + pendingReplaceInstant);
return Option.empty();
}
return Option.of(TimelineMetadataUtils.deserializeRequestedReplaceMetadata(content.get()));