...
This commit is contained in:
parent
615130451e
commit
c56ba6400e
|
@ -178,9 +178,10 @@ public class ActivitiNoticeAspect {
|
||||||
new Thread(() -> {
|
new Thread(() -> {
|
||||||
try {
|
try {
|
||||||
Thread.sleep(200);
|
Thread.sleep(200);
|
||||||
work_.remove(TaskListener.EVENTNAME_COMPLETE + kv.get("id").toString());
|
|
||||||
} catch (InterruptedException e) {
|
} catch (InterruptedException e) {
|
||||||
throw new RuntimeException(e);
|
throw new RuntimeException(e);
|
||||||
|
} finally {
|
||||||
|
work_.remove(TaskListener.EVENTNAME_COMPLETE + kv.get("id").toString());
|
||||||
}
|
}
|
||||||
}).start();
|
}).start();
|
||||||
});
|
});
|
||||||
|
@ -278,9 +279,10 @@ public class ActivitiNoticeAspect {
|
||||||
new Thread(() -> {
|
new Thread(() -> {
|
||||||
try {
|
try {
|
||||||
Thread.sleep(200);
|
Thread.sleep(200);
|
||||||
work_.remove(ExecutionListener.EVENTNAME_END + kv.get("id").toString());
|
|
||||||
} catch (InterruptedException e) {
|
} catch (InterruptedException e) {
|
||||||
throw new RuntimeException(e);
|
throw new RuntimeException(e);
|
||||||
|
} finally {
|
||||||
|
work_.remove(ExecutionListener.EVENTNAME_END + kv.get("id").toString());
|
||||||
}
|
}
|
||||||
}).start();
|
}).start();
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue