mute on 7.x fo windows

Tracking #44942
This commit is contained in:
Alpar Torok 2019-09-10 12:30:42 +03:00
parent 7125c101e6
commit b40ac6dee7
1 changed files with 2 additions and 0 deletions

View File

@ -7,6 +7,7 @@ package org.elasticsearch.xpack.security.authc;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.apache.lucene.util.Constants;
import org.elasticsearch.common.Strings;
import org.elasticsearch.common.settings.MockSecureSettings;
import org.elasticsearch.common.settings.Settings;
@ -127,6 +128,7 @@ public class SecurityRealmSettingsTests extends SecurityIntegTestCase {
}
public void testClusterStarted() {
assumeFalse("https://github.com/elastic/elasticsearch/issues/44942", Constants.WINDOWS);
final AuthenticateRequest request = new AuthenticateRequest();
request.username(nodeClientUsername());
final AuthenticateResponse authenticate = client().execute(AuthenticateAction.INSTANCE, request).actionGet(10, TimeUnit.SECONDS);