[TEST] Add back skip of external clusters

This commit is contained in:
Simon Willnauer 2016-12-02 11:53:33 +01:00
parent 20177f6eee
commit 842e00c689
2 changed files with 11 additions and 0 deletions

View File

@ -30,6 +30,11 @@ import java.util.Collection;
public abstract class ESNetty4IntegTestCase extends ESIntegTestCase {
@Override
protected boolean ignoreExternalCluster() {
return true;
}
@Override
protected boolean addMockTransportService() {
return false;

View File

@ -78,4 +78,10 @@ public abstract class HttpSmokeTestCase extends ESIntegTestCase {
.put(NetworkModule.TRANSPORT_TYPE_KEY, clientTypeKey)
.build();
}
@Override
protected boolean ignoreExternalCluster() {
return true;
}
}