Skip to content

Commit

Permalink
chore: update akka http
Browse files Browse the repository at this point in the history
Fix #798
  • Loading branch information
ptitFicus committed Apr 15, 2024
1 parent 33893dd commit e76f37a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion izanami-server/app/domains/auth/auth.scala
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ package object auth {
.filter(_.enabled)
.flatMap(_.mtls.filter(_.enabled))
.map(c => loadCertificate(system, configuration))
val connectionContext: Option[HttpsConnectionContext] = sslContext.map(c => ConnectionContext.https(c))
val connectionContext: Option[HttpsConnectionContext] = sslContext.map(c => ConnectionContext.httpsClient(c))

val http: HttpExt = Http()

Expand Down
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ object Dependencies {
val scalaVersion = "2.13.10"

val akkaVersion = "2.6.19"
val akkaHttpVersion = "10.1.15"
val akkaHttpVersion = "10.2.10"
val alpakkaVersion = "1.1.2"
}

0 comments on commit e76f37a

Please sign in to comment.