add default tuning config for index task

This commit is contained in:
fjy 2014-06-09 16:28:47 -07:00
parent 5e48f3907b
commit ad7db018d5
1 changed files with 1 additions and 1 deletions

View File

@ -477,7 +477,7 @@ public class IndexTask extends AbstractFixedIntervalTask
this.dataSchema = dataSchema;
this.ioConfig = ioConfig;
this.tuningConfig = tuningConfig;
this.tuningConfig = tuningConfig == null ? new IndexTuningConfig(0, 0) : tuningConfig;
}
@Override