1
0

Pass in String StroageLevel for WriteStatus (#113)

This commit is contained in:
fishie9
2017-03-23 04:31:30 -07:00
committed by prazanna
parent b02910c588
commit b7047ab4fb

View File

@@ -277,8 +277,8 @@ public class HoodieWriteConfig extends DefaultHoodieConfig {
return this;
}
public Builder withWriteStatusStorageLevel(StorageLevel level) {
props.setProperty(WRITE_STATUS_STORAGE_LEVEL, level.toString());
public Builder withWriteStatusStorageLevel(String level) {
props.setProperty(WRITE_STATUS_STORAGE_LEVEL, level);
return this;
}