Skip to content

Commit

Permalink
Merge pull request #10543 from yongyiduan/issue_10542
Browse files Browse the repository at this point in the history
bugfix: 删除流水线接口异常 #10542
  • Loading branch information
bkci-bot authored Jun 19, 2024
2 parents 7718de2 + d799dc9 commit dbd8050
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,8 @@ class ApigwPipelineResourceV3Impl @Autowired constructor(
userId = userId,
projectId = projectId,
pipelineId = pipelineId,
channelCode = apiGatewayUtil.getChannelCode()
channelCode = apiGatewayUtil.getChannelCode(),
checkFlag = true
)
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,8 @@ class ApigwPipelineResourceV4Impl @Autowired constructor(
userId = userId,
projectId = projectId,
pipelineId = pipelineId,
channelCode = apiGatewayUtil.getChannelCode()
channelCode = apiGatewayUtil.getChannelCode(),
checkFlag = true
)
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,7 @@ interface ServicePipelineResource {
channelCode: ChannelCode,
@Parameter(description = "是否检查权限", required = false)
@QueryParam("checkFlag")
@DefaultValue("true")
checkFlag: Boolean? = true
): Result<Boolean>

Expand Down

0 comments on commit dbd8050

Please sign in to comment.