We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bdbed2 commit f48d599Copy full SHA for f48d599
module/ldbc-connector/native/src/test/scala/ldbc/connector/TLSConnectionTest.scala
@@ -19,9 +19,8 @@ class TLSConnectionTest extends FTestPlatform:
19
assertIO(
20
(for
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
cfg <- S2nConfig.builder
24
- .withCertChainAndKeysToStore(List(CertChainAndKey(cert, key)))
+ .withCertChainAndKeysToStore(List(CertChainAndKey(cert, ByteVector.empty)))
25
.withPemsToTrustStore(List(cert.decodeAscii.toOption.get))
26
.build[IO]
27
connection <- ConnectionProvider
0 commit comments