Skip to content

Commit

Permalink
feat:流水线插件代码库开启默认分支保护 TencentBlueKing#9814
Browse files Browse the repository at this point in the history
  • Loading branch information
yjieliang committed Jan 12, 2024
1 parent 36ba030 commit 2ab7505
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class AtomPropDao {
val statusList = listOf(
AtomStatusEnum.TESTING.status.toByte(),
AtomStatusEnum.AUDITING.status.toByte(),
AtomStatusEnum.RELEASED.status.toByte(),
AtomStatusEnum.RELEASED.status.toByte()
)
return dslContext.selectFrom(t1)
.where(t1.ATOM_CODE.`in`(atomCodes).and(t1.ATOM_STATUS.`in`(statusList)))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ class AtomPropServiceImpl @Autowired constructor(

fun partition(
queryDbAtomCodes: MutableList<String>?,
atomPropMap: MutableMap<String, AtomProp>?,
atomPropMap: MutableMap<String, AtomProp>?,
testProjectFlag: Boolean = false
): MutableMap<String, AtomProp>? {
ListUtils.partition(queryDbAtomCodes!!, 100).forEach { rids ->
Expand Down

0 comments on commit 2ab7505

Please sign in to comment.