mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2025-02-25 18:55:28 -06:00
fix functional op bug with result caching
This commit is contained in:
parent
102cc3f559
commit
86cba9f784
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user