Retry operations until folder closed

This commit is contained in:
M66B
2020-03-03 19:25:26 +01:00
parent c8f6b77290
commit 9731e17af8

View File

@@ -150,7 +150,7 @@ class Core {
Log.i(folder.name + " executing operations=" + ops.size());
while (retry < LOCAL_RETRY_MAX && ops.size() > 0 &&
state.batchCanRun(folder.id, priority, sequence) &&
state.isRunning() && state.isRecoverable()) {
state.isRunning() && ifolder.isOpen()) {
TupleOperationEx op = ops.get(0);
try {