[TEST] Add ReindexPlugin to AutodetectResultProcessorIT

Original commit: elastic/x-pack-elasticsearch@acd19bf25c
This commit is contained in:
Simon Willnauer 2017-05-11 21:51:02 +02:00
parent 8fe2ba02f2
commit 2e34f160ff
1 changed files with 2 additions and 1 deletions

View File

@ -13,6 +13,7 @@ import org.elasticsearch.common.io.stream.Writeable;
import org.elasticsearch.common.settings.Settings;
import org.elasticsearch.common.unit.TimeValue;
import org.elasticsearch.common.xcontent.ToXContent;
import org.elasticsearch.index.reindex.ReindexPlugin;
import org.elasticsearch.plugins.Plugin;
import org.elasticsearch.threadpool.ThreadPool;
import org.elasticsearch.xpack.XPackPlugin;
@ -87,7 +88,7 @@ public class AutodetectResultProcessorIT extends XPackSingleNodeTestCase {
@Override
protected Collection<Class<? extends Plugin>> getPlugins() {
return pluginList(XPackPlugin.class);
return pluginList(XPackPlugin.class, ReindexPlugin.class);
}
@Before