Browse Source

修改消息发送模式

longyu 2 years ago
parent
commit
56cf62b437
1 changed files with 5 additions and 3 deletions
  1. 5 3
      controllers/alaram_msg.go

+ 5 - 3
controllers/alaram_msg.go

@@ -49,9 +49,11 @@ func (this *AlarmMsgController) SmsSend() {
 	}
 	//邮箱
 	{
-		configItem, _ := cache.GetSmsConfigByCache("email")
-		if configItem != nil {
-			go services.SendAlarmMsgByEmail(req.ProjectName, req.RunMode, req.MsgBody, configItem.ConfigValue, req.Level)
+		if utils.RunMode == "release" {
+			configItem, _ := cache.GetSmsConfigByCache("email")
+			if configItem != nil {
+				go services.SendAlarmMsgByEmail(req.ProjectName, req.RunMode, req.MsgBody, configItem.ConfigValue, req.Level)
+			}
 		}
 	}
 	br.Ret = 200