Skip to content

Commit d6ba5f6

Browse files
committed
Mute DefaultJdkTrustConfigTests (elastic#72208)
For elastic#71717
1 parent 41713ce commit d6ba5f6

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

libs/ssl-config/src/test/java/org/elasticsearch/common/ssl/DefaultJdkTrustConfigTests.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,15 @@ public class DefaultJdkTrustConfigTests extends ESTestCase {
2626

2727
private static final BiFunction<String, String, String> EMPTY_SYSTEM_PROPERTIES = (key, defaultValue) -> defaultValue;
2828

29+
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/71717")
2930
public void testGetSystemTrustStoreWithNoSystemProperties() throws Exception {
3031
final DefaultJdkTrustConfig trustConfig = new DefaultJdkTrustConfig((key, defaultValue) -> defaultValue);
3132
assertThat(trustConfig.getDependentFiles(), emptyIterable());
3233
final X509ExtendedTrustManager trustManager = trustConfig.createTrustManager();
3334
assertStandardIssuers(trustManager);
3435
}
3536

37+
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/71717")
3638
public void testGetNonPKCS11TrustStoreWithPasswordSet() throws Exception {
3739
final DefaultJdkTrustConfig trustConfig = new DefaultJdkTrustConfig(EMPTY_SYSTEM_PROPERTIES, "fakepassword".toCharArray());
3840
assertThat(trustConfig.getDependentFiles(), emptyIterable());

0 commit comments

Comments
 (0)