We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c24627 commit 0912d96Copy full SHA for 0912d96
redis/src/main/scala/com/avsystem/commons/redis/ApiSubset.scala
@@ -160,7 +160,7 @@ trait RedisMonixApi extends RedisExecutedApi {
160
type Result[A] = Task[A]
161
162
def execute[A](command: RedisCommand[A]): Task[A] = Task.deferFutureAction { scheduler =>
163
- executor.executeBatch(command, execConfig.copy(decodeOn = scheduler))
+ executor.executeBatch(command.batchOrFallback, execConfig.copy(decodeOn = scheduler))
164
}
165
166
def recoverWith[A](executed: => Task[A])(fun: PartialFunction[Throwable, Task[A]]): Task[A] =
0 commit comments