Skip to content

Commit

Permalink
Merge pull request #1996 from awilliamsOM1/v3-circe-0.14.6
Browse files Browse the repository at this point in the history
Upgraded circe to 0.14.6
  • Loading branch information
adamw authored Nov 8, 2023
2 parents da22511 + a9f070b commit 44572ae
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ val testServerSettings = Seq(
)

val circeVersion: Option[(Long, Long)] => String = { _ =>
"0.14.5"
"0.14.6"
}

val jsoniterVersion = "2.22.1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ class PekkoHttpBackend private (
.withUpdatedConnectionSettings(_.withConnectingTimeout(opts.connectionTimeout))

override def send[T, R >: PE](r: Request[T, R]): Future[Response[T]] =
adjustExceptions(r) {
if (r.isWebSocket) sendWebSocket(r) else sendRegular(r)
}
adjustExceptions(r) {
if (r.isWebSocket) sendWebSocket(r) else sendRegular(r)
}

private def sendRegular[T, R >: PE](r: Request[T, R]): Future[Response[T]] =
Future
Expand Down

0 comments on commit 44572ae

Please sign in to comment.