Merge branch 'master' into ccr

This commit is contained in:
Martijn van Groningen 2017-12-18 16:52:09 +01:00
parent 6c06aacb57
commit 973f126c24
1 changed files with 5 additions and 1 deletions

View File

@ -39,6 +39,7 @@ import org.elasticsearch.index.shard.ShardId;
import org.elasticsearch.index.store.DirectoryService;
import org.elasticsearch.index.store.Store;
import org.elasticsearch.index.translog.TranslogConfig;
import org.elasticsearch.indices.breaker.NoneCircuitBreakerService;
import org.elasticsearch.test.DummyShardLock;
import org.elasticsearch.test.ESTestCase;
import org.elasticsearch.test.IndexSettingsModule;
@ -271,9 +272,12 @@ public class FollowingEngineTests extends ESTestCase {
translogConfig,
TimeValue.timeValueMinutes(5),
Collections.emptyList(),
Collections.emptyList(),
null,
new TranslogHandler(
xContentRegistry, IndexSettingsModule.newIndexSettings(shardId.getIndexName(), indexSettings.getSettings())));
xContentRegistry, IndexSettingsModule.newIndexSettings(shardId.getIndexName(), indexSettings.getSettings())),
new NoneCircuitBreakerService()
);
}
private static Store createStore(