Skip to content

Commit 351a824

Browse files
authored
Mute DefaultJdkTrustConfigTests (#72208)
For #71717
1 parent c49fe30 commit 351a824

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)