Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastian-alfers committed Nov 26, 2024
1 parent 042ee83 commit 8cfe954
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,10 @@ object R2dbcSession {
withSession(system, connectionFactory, poolSettings.closeCallsExceeding)(fun)
}

@InternalApi private[akka] def withSession[A](system: ActorSystem[_], connectionFactory: ConnectionFactory, closeCallsExceeding: Option[FiniteDuration])(
fun: R2dbcSession => Future[A]): Future[A] = {
@InternalApi private[akka] def withSession[A](
system: ActorSystem[_],
connectionFactory: ConnectionFactory,
closeCallsExceeding: Option[FiniteDuration])(fun: R2dbcSession => Future[A]): Future[A] = {
val r2dbcExecutor =
new R2dbcExecutor(connectionFactory, log, logDbCallsDisabled, closeCallsExceeding)(
system.executionContext,
Expand Down

0 comments on commit 8cfe954

Please sign in to comment.