Skip to content

Commit

Permalink
fixing another error message
Browse files Browse the repository at this point in the history
  • Loading branch information
driev committed Sep 5, 2024
1 parent 11183b5 commit 0dd681e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scheduler/pkg/store/pipeline/errors.go
Original file line number Diff line number Diff line change
Expand Up @@ -201,5 +201,5 @@ type PipelineNameValidationErr struct {
}

func (pnve *PipelineNameValidationErr) Error() string {
return fmt.Sprintf("pipeline %s does not have a valid name - it must be alphanmumeric and can contain underscores and hyphens", pnve.pipeline)
return fmt.Sprintf("pipeline %s does not have a valid name - it must be alphanmumeric and cannot contain dots (.)", pnve.pipeline)
}

0 comments on commit 0dd681e

Please sign in to comment.