首节已办发送
This commit is contained in:
parent
723270cf23
commit
a8ff81d810
|
@ -65,10 +65,15 @@ public class BacklogServiceHandle extends AbstractServiceHandler {
|
||||||
}
|
}
|
||||||
logger.info("###结束待办_createToDo");
|
logger.info("###结束待办_createToDo");
|
||||||
try {
|
try {
|
||||||
String s = cache.get(ctx.getBusinessKey());
|
//判断是否包含cache值
|
||||||
if (Objects.equals(s, "true")) {
|
boolean contains = cache.contains(ctx.getBusinessKey());
|
||||||
|
if(contains){
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
/*String s = cache.get(ctx.getBusinessKey());
|
||||||
|
if (Objects.equals(s, "true")) {
|
||||||
|
return;
|
||||||
|
}*/
|
||||||
// 发送首节的已办
|
// 发送首节的已办
|
||||||
sendToDo(ctx);
|
sendToDo(ctx);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
|
|
Loading…
Reference in New Issue