Don't pass indexing buffer side to the translog

This commit is contained in:
Simon Willnauer 2015-01-09 23:45:20 +01:00
parent 4cda543637
commit e416ed2426
1 changed files with 1 additions and 1 deletions

View File

@ -901,7 +901,7 @@ public class IndexShard extends AbstractIndexShardComponent implements IndexShar
public void updateBufferSize(ByteSizeValue shardIndexingBufferSize, ByteSizeValue shardTranslogBufferSize) {
Engine engine = engineSafe();
engine.updateIndexingBufferSize(shardIndexingBufferSize);
translog().updateBuffer(shardIndexingBufferSize);
translog().updateBuffer(shardTranslogBufferSize);
}
public void markAsInactive() {