[7.x][SQL] Mute JdbcConfigurationTests.testDriverConfigurationWithSSLInURL (#49085) (#49086)

Relates #41557
This commit is contained in:
Dimitris Athanasiou 2019-11-14 15:15:55 +02:00 committed by GitHub
parent e1726fff56
commit be5894ed9c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -5,7 +5,6 @@
*/
package org.elasticsearch.xpack.sql.jdbc;
import org.apache.lucene.util.Constants;
import org.elasticsearch.SpecialPermission;
import org.elasticsearch.test.ESTestCase;
import org.elasticsearch.xpack.sql.client.SslConfig;
@ -258,8 +257,8 @@ public class JdbcConfigurationTests extends ESTestCase {
}
@SuppressForbidden(reason = "JDBC drivers allows logging to Sys.out")
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/41557")
public void testDriverConfigurationWithSSLInURL() {
assumeFalse("https://github.com/elastic/elasticsearch/issues/41557", Constants.WINDOWS);
Map<String, String> urlPropMap = sslProperties();
String sslUrlProps = urlPropMap.entrySet().stream().map(e -> e.getKey() + "=" + e.getValue()).collect(Collectors.joining("&"));