We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ae1b1c commit 4fc2981Copy full SHA for 4fc2981
src/test/java/com/arangodb/example/ssl/SslExample.java
@@ -30,6 +30,7 @@
30
import javax.net.ssl.SSLContext;
31
import javax.net.ssl.TrustManagerFactory;
32
33
+import org.junit.Ignore;
34
import org.junit.Test;
35
36
import com.arangodb.ArangoDBAsync;
@@ -54,6 +55,7 @@ public class SslExample {
54
55
private static final String SSL_TRUSTSTORE_PASSWORD = "12345678";
56
57
@Test
58
+ @Ignore
59
public void connect() throws Exception {
60
final KeyStore ks = KeyStore.getInstance(KeyStore.getDefaultType());
61
ks.load(this.getClass().getResourceAsStream(SSL_TRUSTSTORE), SSL_TRUSTSTORE_PASSWORD.toCharArray());
0 commit comments