Enable MockHttpTransport in ShardChangsIT

CCR side of #29601
This commit is contained in:
Nhat Nguyen 2018-05-04 13:44:18 -04:00
parent f3a87be74a
commit 6e0d0feca0
1 changed files with 2 additions and 1 deletions

View File

@ -22,6 +22,7 @@ import org.elasticsearch.persistent.PersistentTasksCustomMetaData;
import org.elasticsearch.plugins.Plugin;
import org.elasticsearch.tasks.TaskInfo;
import org.elasticsearch.test.ESIntegTestCase;
import org.elasticsearch.test.MockHttpTransport;
import org.elasticsearch.test.discovery.TestZenDiscovery;
import org.elasticsearch.xpack.ccr.action.FollowExistingIndexAction;
import org.elasticsearch.xpack.ccr.action.ShardChangesAction;
@ -61,7 +62,7 @@ public class ShardChangesIT extends ESIntegTestCase {
@Override
protected Collection<Class<? extends Plugin>> getMockPlugins() {
return Arrays.asList(TestSeedPlugin.class, TestZenDiscovery.TestPlugin.class);
return Arrays.asList(TestSeedPlugin.class, TestZenDiscovery.TestPlugin.class, MockHttpTransport.TestPlugin.class);
}
@Override