1
0

[HUDI-3621] Fixing NullPointerException in DeltaStreamer (#5039)

This commit is contained in:
Sivabalan Narayanan
2022-03-14 15:34:17 -07:00
committed by GitHub
parent 003c6ee73e
commit 22c3ce73db

View File

@@ -910,6 +910,10 @@ public class DeltaSync implements Serializable {
* @return Requested clustering instant.
*/
public Option<String> getClusteringInstantOpt() {
return writeClient.scheduleClustering(Option.empty());
if (writeClient != null) {
return writeClient.scheduleClustering(Option.empty());
} else {
return Option.empty();
}
}
}