problem: doesn't retry on upstream error

This commit is contained in:
Igor Artamonov
2019-08-31 23:31:58 -04:00
parent aa3f66c059
commit 5e6b586cf8
3 changed files with 39 additions and 2 deletions

View File

@@ -134,6 +134,7 @@ class NativeCall(
.flatMap { api ->
api.execute(ctx.id, ctx.payload.method, ctx.payload.params).map { Tuples.of(it, api.upstream!!) }
}
.retry(3)
.reduce(ctx.callQuorum, {res, a ->
if (res.record(a.t1, a.t2)) {
repeatControl.onComplete()