Skip to content

Commit

Permalink
Fix bug in pipeline validation
Browse files Browse the repository at this point in the history
  • Loading branch information
georg-schwarz committed Jan 15, 2024
1 parent cda9e9a commit a224ee9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ function checkStartingBlocks(
pipeline: PipelineDefinition,
context: ValidationContext,
): void {
if (PipelineWrapper.canBeWrapped(pipeline)) {
if (!PipelineWrapper.canBeWrapped(pipeline)) {
return;
}
const pipelineWrapper = new PipelineWrapper(pipeline);
Expand Down

0 comments on commit a224ee9

Please sign in to comment.