Skip to content

Commit

Permalink
Fix compilation issue in 2.12.x (#131)
Browse files Browse the repository at this point in the history
  • Loading branch information
rtar committed Jan 7, 2021
1 parent 1d23da1 commit 44d9ce2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ object CassandraModule {
fromGFuture = new FromGFuture[F] {
val self = FromGFuture.lift[F]
def apply[A](future: => ListenableFuture[A]) = {
val fa = self(future) onError { e =>
val fa = self(future) onError { case e =>
log.error("Cassandra request failed", e)
}
Concurrent.timeout(fa, FutureTimeout)
Expand Down

0 comments on commit 44d9ce2

Please sign in to comment.