Commit d68c15bf567b8cf8da6eab342d3697e330382863
1 parent
3f5a72fb
Exists in
master
and in
56 other branches
Reduce sleep time (#7502)
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/Request/ProcessRequestImpl/Process/ProcessClass.php
@@ -220,7 +220,7 @@ class ProcessClass | @@ -220,7 +220,7 @@ class ProcessClass | ||
220 | { | 220 | { |
221 | if (!call_user_func($callback,$this,$batchEnabled)) | 221 | if (!call_user_func($callback,$this,$batchEnabled)) |
222 | return false; | 222 | return false; |
223 | - sleep(2); | 223 | + usleep(100000); |
224 | } | 224 | } |
225 | return true; | 225 | return true; |
226 | } | 226 | } |