Skip to content

Commit

Permalink
feature: 白名单IP添加时增加对“执行方式”的判断,如仅开文件分发则在脚本执行中不可选中 TencentBlueKing#115
Browse files Browse the repository at this point in the history
  • Loading branch information
jsonwan authored and hLinx committed Sep 16, 2021
1 parent 0bd9a7a commit 46ad2d9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ public List<CloudIPDTO> listWhiteIPByAppIds(DSLContext dslContext, Collection<Lo
conditions.add(tWhiteIPAppRel.APP_ID.in(appIds));
}
if (actionScopeId != null) {
conditions.add(tWhiteIPActionScope.ID.eq(actionScopeId));
conditions.add(tWhiteIPActionScope.ACTION_SCOPE_ID.eq(actionScopeId));
}
val query = dslContext.select(
tWhiteIPIP.CLOUD_AREA_ID.as(KEY_CLOUD_AREA_ID),
Expand Down

0 comments on commit 46ad2d9

Please sign in to comment.