File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -895,10 +895,10 @@ func (impl *PipelineStageRepositoryImpl) CheckIfPluginExistsInPipelineStage(pipe
895
895
var step PipelineStageStep
896
896
query := impl .dbConnection .Model (& step ).
897
897
Column ("pipeline_stage_step.*" ).
898
- Join ("INNER JOIN pipeline_stage ps on ps.id = plugin_stage_step .pipeline_stage_id" ).
899
- Where ("plugin_stage_step .ref_plugin_id = ?" , pluginId ).
898
+ Join ("INNER JOIN pipeline_stage ps on ps.id = pipeline_stage_step .pipeline_stage_id" ).
899
+ Where ("pipeline_stage_step .ref_plugin_id = ?" , pluginId ).
900
900
Where ("ps.type = ?" , stageType ).
901
- Where ("plugin_stage_step .deleted=?" , false ).
901
+ Where ("pipeline_stage_step .deleted=?" , false ).
902
902
Where ("ps.deleted= ?" , false )
903
903
904
904
if stageType .IsStageTypePostCi () || stageType .IsStageTypePostCi () {
You can’t perform that action at this time.
0 commit comments