Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,6 @@ c2237571a1806b6c97967870f8e5a5b68c0b58f0

# Scala Steward: Reformat with scalafmt 3.10.1
cc237edbf8c925b3c98ade768c4a0b80ee5691e3

# Scala Steward: Reformat with scalafmt 3.10.3
7b95a6d151ddb227d6c0e2e393ca633d7d843687
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = 3.10.1
version = 3.10.3

maxColumn = 120

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ class HouseKeeperTest extends FTestPlatform:
yield
// Connections should be validated and maintained
assert(finalStatus.total >= 1, "Should maintain at least minimum connections")
// Connections should be validated and maintained
// Connections should be validated and maintained
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ object PreparedStatementIO:
override def raiseError[A](e: Throwable): PreparedStatementIO[A] = module.raiseError(e)
override def handleErrorWith[A](fa: PreparedStatementIO[A])(
f: Throwable => PreparedStatementIO[A]
): PreparedStatementIO[A] = module.handleErrorWith(fa)(f)
): PreparedStatementIO[A] = module.handleErrorWith(fa)(f)
override def monotonic: PreparedStatementIO[FiniteDuration] = module.monotonic
override def realTime: PreparedStatementIO[FiniteDuration] = module.realtime
override def suspend[A](hint: Sync.Type)(thunk: => A): PreparedStatementIO[A] = module.suspend(hint)(thunk)
Expand Down
Loading