From 535dacce6f28502f360c98cbcae14632f4934fd5 Mon Sep 17 00:00:00 2001 From: hejieehe <904696180@qq.com> Date: Mon, 19 Aug 2024 15:37:22 +0800 Subject: [PATCH] =?UTF-8?q?feat=EF=BC=9A=E6=B5=81=E6=B0=B4=E7=BA=BF?= =?UTF-8?q?=E6=9D=83=E9=99=90=E4=BB=A3=E6=8C=81=E5=8A=9F=E8=83=BD=E9=87=8D?= =?UTF-8?q?=E6=9E=84=20#10356?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../devops/process/service/SubPipelineStartUpService.kt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/backend/ci/core/process/biz-process/src/main/kotlin/com/tencent/devops/process/service/SubPipelineStartUpService.kt b/src/backend/ci/core/process/biz-process/src/main/kotlin/com/tencent/devops/process/service/SubPipelineStartUpService.kt index 24d06c87557..13a5aa986d2 100644 --- a/src/backend/ci/core/process/biz-process/src/main/kotlin/com/tencent/devops/process/service/SubPipelineStartUpService.kt +++ b/src/backend/ci/core/process/biz-process/src/main/kotlin/com/tencent/devops/process/service/SubPipelineStartUpService.kt @@ -464,8 +464,7 @@ class SubPipelineStartUpService @Autowired constructor( if (pipelineId.isBlank() || projectId.isBlank()) { return Result(ArrayList()) } - val startUser = pipelineRepositoryService.getPipelineOauthUser(projectId, pipelineId) ?: userId - val result = pipelineBuildFacadeService.buildManualStartupInfo(startUser, projectId, pipelineId, ChannelCode.BS) + val result = pipelineBuildFacadeService.buildManualStartupInfo(userId, projectId, pipelineId, ChannelCode.BS) val parameter = ArrayList() val prop = result.properties.filter { val const = if (includeConst == false) { it.constant != true } else { true }