Allow long running purge

This commit is contained in:
M66B 2022-12-09 19:25:53 +01:00
parent 87956d420f
commit 38c6c3b513
1 changed files with 2 additions and 1 deletions

View File

@ -2158,7 +2158,8 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
} }
for (TupleOperationEx op : partition) for (TupleOperationEx op : partition)
if (EntityOperation.SYNC.equals(op.name)) { if (EntityOperation.SYNC.equals(op.name) ||
EntityOperation.PURGE.equals(op.name)) {
timeout = 24 * 3600 * 1000L; timeout = 24 * 3600 * 1000L;
break; break;
} }