fix functional op bug with result caching

This commit is contained in:
Jonathan Shook 2022-05-24 13:40:13 -05:00
parent 102cc3f559
commit 86cba9f784

View File

@ -77,10 +77,10 @@ public class StandardAction<A extends StandardActivity<R, ?>, R extends Op> impl
}
int code = 0;
Object result = null;
while (op != null) {
int tries = 0;
Object result = null;
while (tries++ <= activity.getMaxTries()) {
Throwable error = null;
long startedAt = System.nanoTime();