Disable nio test transport (#28028)

This commit disables the nio transport as an option for the test
transport in integration tests. This is because it does not currently
run properly in intellij due to socket permissions. It should be
reenabled once #27881 is merged (and the proper permissions are added).
This commit is contained in:
Tim Brooks 2017-12-31 14:59:38 -07:00 committed by GitHub
parent 2603391c00
commit c775374125
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -896,7 +896,9 @@ public abstract class ESTestCase extends LuceneTestCase {
@BeforeClass
public static void setUseNio() throws Exception {
useNio = randomBoolean();
// useNio = randomBoolean();
// TODO: Temporarily disable nio as it does not work with intellij testrunner
useNio = false;
}
public static String getTestTransportType() {