Skip to content

Commit

Permalink
feat:【流水线插件】支持历史大版本下的小版本更新 TencentBlueKing#1841
Browse files Browse the repository at this point in the history
  • Loading branch information
carlyin0801 committed Sep 6, 2021
1 parent b967102 commit 40cc3d0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ abstract class MarketAtomServiceImpl @Autowired constructor() : MarketAtomServic
// 获取插件处于流程中的版本信息
var processingVersionInfoMap: MutableMap<String, MutableList<AtomBaseInfo>>? = null
processingAtomRecords?.forEach { processingAtomRecord ->
if (processingAtomRecord.version == INIT_VERSION) {
if (processingAtomRecord.version == INIT_VERSION || processingAtomRecord.version.isNullOrBlank()) {
return@forEach
}
if (processingVersionInfoMap == null) {
Expand Down

0 comments on commit 40cc3d0

Please sign in to comment.