Loading escheduler-alert/src/main/java/cn/escheduler/alert/utils/MailUtils.java +1 −0 Original line number Diff line number Diff line Loading @@ -160,6 +160,7 @@ public class MailUtils { return retMap; }catch (Exception e){ handleException(receivers, retMap, e); return retMap; } } return retMap; Loading escheduler-server/src/main/java/cn/escheduler/server/worker/task/sql/SqlTask.java +8 −1 Original line number Diff line number Diff line Loading @@ -17,6 +17,7 @@ package cn.escheduler.server.worker.task.sql; import cn.escheduler.alert.utils.MailUtils; import cn.escheduler.api.enums.Status; import cn.escheduler.common.Constants; import cn.escheduler.common.enums.DbType; import cn.escheduler.common.enums.ShowType; Loading Loading @@ -310,6 +311,7 @@ public class SqlTask extends AbstractTask { } } catch (Exception e) { logger.error(e.getMessage(),e); throw new RuntimeException(e.getMessage()); } return connection; } Loading Loading @@ -371,9 +373,14 @@ public class SqlTask extends AbstractTask { String showTypeName = sqlParameters.getShowType().replace(Constants.COMMA,"").trim(); if(EnumUtils.isValidEnum(ShowType.class,showTypeName)){ MailUtils.sendMails(receviersList,receviersCcList,title, content, ShowType.valueOf(showTypeName)); Map<String, Object> mailResult = MailUtils.sendMails(receviersList, receviersCcList, title, content, ShowType.valueOf(showTypeName)); Status status = (Status) mailResult.get(cn.escheduler.api.utils.Constants.STATUS); if(status != Status.SUCCESS){ throw new RuntimeException("send mail failed!"); } }else{ logger.error("showType: {} is not valid " ,showTypeName); throw new RuntimeException(String.format("showType: %s is not valid ",showTypeName)); } } Loading Loading
escheduler-alert/src/main/java/cn/escheduler/alert/utils/MailUtils.java +1 −0 Original line number Diff line number Diff line Loading @@ -160,6 +160,7 @@ public class MailUtils { return retMap; }catch (Exception e){ handleException(receivers, retMap, e); return retMap; } } return retMap; Loading
escheduler-server/src/main/java/cn/escheduler/server/worker/task/sql/SqlTask.java +8 −1 Original line number Diff line number Diff line Loading @@ -17,6 +17,7 @@ package cn.escheduler.server.worker.task.sql; import cn.escheduler.alert.utils.MailUtils; import cn.escheduler.api.enums.Status; import cn.escheduler.common.Constants; import cn.escheduler.common.enums.DbType; import cn.escheduler.common.enums.ShowType; Loading Loading @@ -310,6 +311,7 @@ public class SqlTask extends AbstractTask { } } catch (Exception e) { logger.error(e.getMessage(),e); throw new RuntimeException(e.getMessage()); } return connection; } Loading Loading @@ -371,9 +373,14 @@ public class SqlTask extends AbstractTask { String showTypeName = sqlParameters.getShowType().replace(Constants.COMMA,"").trim(); if(EnumUtils.isValidEnum(ShowType.class,showTypeName)){ MailUtils.sendMails(receviersList,receviersCcList,title, content, ShowType.valueOf(showTypeName)); Map<String, Object> mailResult = MailUtils.sendMails(receviersList, receviersCcList, title, content, ShowType.valueOf(showTypeName)); Status status = (Status) mailResult.get(cn.escheduler.api.utils.Constants.STATUS); if(status != Status.SUCCESS){ throw new RuntimeException("send mail failed!"); } }else{ logger.error("showType: {} is not valid " ,showTypeName); throw new RuntimeException(String.format("showType: %s is not valid ",showTypeName)); } } Loading