Commit 2fca59c2 authored by 黎博's avatar 黎博

金融线上BUG推送时,去掉描述

parent 4d976f62
......@@ -102,7 +102,8 @@ public class WebhookServiceImpl implements WebhookService {
content += "概要:[" + summary + "](" + "http://jira2.quantgroup.cn/browse/" + key + ")" + "\n\n"
+ "- 优先级:" + priority + "\n"
+ "- 经办人:" + assignee + "\n\n";
if (description != null) {
// 金融发送消息时去掉描述 2022-10-27的需求
if (description != null && !StringUtils.equals(key.split("-")[0], "YFGDZZ")) {
String[] descList = description.split("\n");
for (String desc: descList) {
content += "> " + desc + "\n\n";
......
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