Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmd/func-util/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ func deploy(ctx context.Context) error {

res, err := deployer.Deploy(ctx, f)
if err != nil {
return fmt.Errorf("cannont deploy the function: %w", err)
return fmt.Errorf("cannot deploy the function: %w", err)
}

fmt.Printf("function has been deployed\n%+v\n", res)
Expand Down
2 changes: 1 addition & 1 deletion pkg/pipelines/tekton/pipelines_provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ func (pp *PipelinesProvider) Run(ctx context.Context, f fn.Function) (string, fn

newestPipelineRun, err = client.PipelineRuns(namespace).Get(ctx, newestPipelineRun.Name, metav1.GetOptions{})
if err != nil {
return "", f, fmt.Errorf("problem in retriving pipeline run status: %v", err)
return "", f, fmt.Errorf("problem in retrieving pipeline run status: %v", err)
}

if newestPipelineRun.Status.GetCondition(apis.ConditionSucceeded).Status == corev1.ConditionFalse {
Expand Down
Loading