update document

This commit is contained in:
xuxueli 2019-05-22 17:47:59 +08:00
parent a73ecb631f
commit 7c0d119f52
1 changed files with 11 additions and 2 deletions

View File

@ -38,13 +38,13 @@ public class JobScheduleHelper {
public void run() { public void run() {
try { try {
TimeUnit.MILLISECONDS.sleep(5000); TimeUnit.MILLISECONDS.sleep(5000 + System.currentTimeMillis()%1000 );
} catch (InterruptedException e) { } catch (InterruptedException e) {
if (!toStop) { if (!toStop) {
logger.error(e.getMessage(), e); logger.error(e.getMessage(), e);
} }
} }
logger.info(">>>>>>>>> init xxl-job admin scheduler running."); logger.info(">>>>>>>>> init xxl-job admin scheduler success.");
while (!toStop) { while (!toStop) {
@ -166,6 +166,15 @@ public class JobScheduleHelper {
ringThread = new Thread(new Runnable() { ringThread = new Thread(new Runnable() {
@Override @Override
public void run() { public void run() {
try {
TimeUnit.MILLISECONDS.sleep(System.currentTimeMillis()%1000 );
} catch (InterruptedException e) {
if (!toStop) {
logger.error(e.getMessage(), e);
}
}
int lastSecond = -1; int lastSecond = -1;
while (!toStop) { while (!toStop) {