1
0

remove hardcoding of autoClean

This commit is contained in:
prazanna
2017-03-23 15:54:26 -07:00
committed by GitHub
parent a94f3a638e
commit 0e3f635adb

View File

@@ -98,7 +98,7 @@ public class HoodieCompactionConfig extends DefaultHoodieConfig {
}
public Builder withAutoClean(Boolean autoClean) {
props.setProperty(AUTO_CLEAN_PROP, String.valueOf(Boolean.TRUE));
props.setProperty(AUTO_CLEAN_PROP, String.valueOf(autoClean));
return this;
}