File tree 1 file changed +2
-2
lines changed
module/ldbc-connector/native/src/test/scala/ldbc/connector
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -18,8 +18,8 @@ class TLSConnectionTest extends FTestPlatform:
18
18
test(" Verify that you can connect to MySQL with a TLS connection" ) {
19
19
assertIO(
20
20
(for
21
- cert <- Resource .eval(Files [IO ].readAll(Path (" database/ssl/client-cert .pem" )).compile.to(ByteVector ))
22
- key <- Resource .eval(Files [IO ].readAll(Path (" database/ssl/client -key.pem" )).compile.to(ByteVector ))
21
+ cert <- Resource .eval(Files [IO ].readAll(Path (" database/ssl/ca .pem" )).compile.to(ByteVector ))
22
+ key <- Resource .eval(Files [IO ].readAll(Path (" database/ssl/ca -key.pem" )).compile.to(ByteVector ))
23
23
cfg <- S2nConfig .builder
24
24
.withCertChainAndKeysToStore(List (CertChainAndKey (cert, key)))
25
25
.withPemsToTrustStore(List (cert.decodeAscii.toOption.get))
You can’t perform that action at this time.
0 commit comments