Skip to content

Commit

Permalink
Merge pull request #86 from OpsMx/multiSpinnakerTesting-ISD-master_co…
Browse files Browse the repository at this point in the history
…py_404

fixing the issue of create new pipeline
  • Loading branch information
aravind-bommena authored Nov 21, 2023
2 parents 3dfa9a9 + 02277a3 commit f75b43a
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,10 +114,11 @@ export class PipelineConfigService {

public static savePipeline(toSave: IPipeline): PromiseLike<void> {
const pipeline = cloneDeep(toSave);
const applicationName = pipeline['application'];
// const applicationName = pipeline['application'];
delete pipeline.isNew;
pipeline.name = pipeline.name.trim();
return this.getAppDetailsbyID(pipeline.name, pipeline, applicationName);
// return this.getAppDetailsbyID(pipeline.name, pipeline, applicationName);
return this.savePipelineStageConfig(pipeline);
}

public static reorderPipelines(
Expand Down

0 comments on commit f75b43a

Please sign in to comment.