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