IDEMPIERE-4154 ServerPush Adjustments. Incorporate suggestion from Martin Schönbeck.

This commit is contained in:
hengsin 2020-02-16 17:00:00 +08:00
parent 46c60f34b8
commit 26f18f9c22
1 changed files with 5 additions and 3 deletions

View File

@ -192,9 +192,11 @@ public class AtmosphereServerPush implements ServerPush {
}
if (!ok) {
for(int i = 0; i < 3 && !ok; i++) {
try {
Thread.sleep(500);
} catch (InterruptedException e1) {}
for (int ii = 0; ii < 10 && schedules.size() > 0; ii++) {
try {
Thread.sleep(50);
} catch (InterruptedException e1) {}
}
if (schedules.size() > 0) {
try {
ok = commitResponse();