Commit b9c33a3e by lzxry

【单日流量同步】用户不存在

parent 71cc4d88
......@@ -207,6 +207,9 @@ public class TrackingFlowTask {
//查询用户下所有appkey
Account account = accountRepository.findByEmail(email);
if(account==null||account.getRootParent()==null){
logger.info("【单日流量同步】用户不存在:{}",email);
}
List<Account> accountList = accountRepository.findByRootParent(account.getRootParent());
List<Long> idList = new ArrayList<>();
for (Account ac : accountList) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment