Skip to content

Commit

Permalink
feat: 红线git评论分开发送 TencentBlueKing#6118
Browse files Browse the repository at this point in the history
  • Loading branch information
JamiKX1 committed Feb 12, 2022
1 parent 75d234c commit 228e294
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,6 @@ class QualityHistoryService @Autowired constructor(
detail = record.detail,
client = client
)
logger.info("QUALITY|logPromt is: ${record.logPrompt}")
}
}
QualityRuleIntercept(
Expand All @@ -280,7 +279,7 @@ class QualityHistoryService @Autowired constructor(
interceptTime = it.createTime.timestampmilli(),
result = RuleInterceptResult.valueOf(it.result),
checkTimes = it.checkTimes,
resultMsg = interceptList
resultMsg =interceptList
)
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ class QualityUrlUtils {
return if (detail.isNullOrBlank() || detail!!.split(",").size > 1) {
"http://$codeccHost/codecc/$projectId/task/$taskId/detail?buildId=$buildId"
} else {
logger.info("QUALITY|codeccUrl: $projectId, $taskId, $buildId")
val detailValue = codeccToolUrlPathMap[detail] ?: DEFAULT_CODECC_URL
val fillDetailUrl = detailValue.replace("##projectId##", projectId)
.replace("##taskId##", taskId.toString())
Expand Down

0 comments on commit 228e294

Please sign in to comment.