File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
redis/src/main/scala/com/avsystem/commons/redis Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ object Commons extends ProjectGroup("commons") {
29
29
val scalatestVersion = " 3.2.17"
30
30
val scalatestplusScalacheckVersion = " 3.2.14.0"
31
31
val scalacheckVersion = " 1.17.0"
32
- val jettyVersion = " 10.0.16 "
32
+ val jettyVersion = " 10.0.17 "
33
33
val mongoVersion = " 4.10.2"
34
34
val springVersion = " 5.3.30"
35
35
val typesafeConfigVersion = " 1.4.2"
Original file line number Diff line number Diff line change 1
1
logLevel := Level .Warn
2
2
3
3
addSbtPlugin(" com.github.ghik" % " sbt-nosbt" % " 0.2.1" )
4
- addSbtPlugin(" org.scala-js" % " sbt-scalajs" % " 1.13.2 " )
4
+ addSbtPlugin(" org.scala-js" % " sbt-scalajs" % " 1.14.0 " )
5
5
addSbtPlugin(" org.scala-js" % " sbt-jsdependencies" % " 1.0.2" )
6
6
addSbtPlugin(" org.jetbrains.scala" % " sbt-ide-settings" % " 1.1.1" )
7
7
addSbtPlugin(" pl.project13.scala" % " sbt-jmh" % " 0.4.6" )
8
8
addSbtPlugin(" com.github.sbt" % " sbt-ci-release" % " 1.5.12" )
9
9
addSbtPlugin(" com.github.sbt" % " sbt-unidoc" % " 0.5.0" )
10
- addSbtPlugin(" com.typesafe" % " sbt-mima-plugin" % " 1.1.2 " )
10
+ addSbtPlugin(" com.typesafe" % " sbt-mima-plugin" % " 1.1.3 " )
11
11
addSbtPlugin(" com.timushev.sbt" % " sbt-updates" % " 0.6.4" )
12
- addSbtPlugin(" com.github.sbt" % " sbt-github-actions" % " 0.16 .0" )
12
+ addSbtPlugin(" com.github.sbt" % " sbt-github-actions" % " 0.17 .0" )
Original file line number Diff line number Diff line change @@ -160,7 +160,7 @@ trait RedisMonixApi extends RedisExecutedApi {
160
160
type Result [A ] = Task [A ]
161
161
162
162
def execute [A ](command : RedisCommand [A ]): Task [A ] = Task .deferFutureAction { scheduler =>
163
- executor.executeBatch(command, execConfig.copy(decodeOn = scheduler))
163
+ executor.executeBatch(command.batchOrFallback , execConfig.copy(decodeOn = scheduler))
164
164
}
165
165
166
166
def recoverWith [A ](executed : => Task [A ])(fun : PartialFunction [Throwable , Task [A ]]): Task [A ] =
You can’t perform that action at this time.
0 commit comments