I am trying to read and write with the arangodb datasource
(https://mvnrepository.com/artifact/com.arangodb/arangodb-spark-datasource-3.1)
and
I want the hostname not to be verified in my connection through ssl.
With the java-driver, I set this configuration:
val arangodb = new ArangoDB.Builder()
.host("localhost", 8530)
.serializer(serializer)
.password("password")
.useSsl(true)
.sslContext(sc)
.hostnameVerifier(NoopHostnameVerifier.INSTANCE)
.build
You can use *hostnameVerifier *but in Datasource i dont find any options
for *HostnameVerifier*
--
You received this message because you are subscribed to the Google Groups
"ArangoDB" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/arangodb/40ca9135-dcb2-40f1-991f-9375ab084891n%40googlegroups.com.