Skip to content

Commit

Permalink
refactor(apps/run): error message start with lower case
Browse files Browse the repository at this point in the history
  • Loading branch information
EtienneM committed Jun 1, 2023
1 parent e39c88a commit af7fbb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ func (runCtx *runContext) connectToRunServer(ctx context.Context) (*http.Respons
} else if url.Scheme == "http" {
conn = httputil.NewClientConn(dial, nil)
} else {
return nil, nil, errgo.Newf("Invalid scheme format %s", url.Scheme)
return nil, nil, errgo.Newf("invalid scheme format %s", url.Scheme)
}

res, err := conn.Do(req)
Expand Down

0 comments on commit af7fbb7

Please sign in to comment.