forked from TrueCloudLab/certificates
Remove url from error message.
This commit is contained in:
parent
0c654d93ea
commit
bca5dcc326
1 changed files with 2 additions and 4 deletions
|
@ -298,7 +298,7 @@ func onboardAction(ctx *cli.Context) error {
|
|||
|
||||
res, err := http.Get(onboardingURL)
|
||||
if err != nil {
|
||||
return errors.Wrapf(err, "http GET %s failed", onboardingURL)
|
||||
return errors.Wrap(err, "error connecting onboarding guide")
|
||||
}
|
||||
|
||||
body, err := ioutil.ReadAll(res.Body)
|
||||
|
@ -333,7 +333,7 @@ func onboardAction(ctx *cli.Context) error {
|
|||
|
||||
resp, err := http.Post(onboardingURL, "application/json", bytes.NewBuffer(payload))
|
||||
if err != nil {
|
||||
return errors.Wrapf(err, "http POST %s failed", onboardingURL)
|
||||
return errors.Wrap(err, "error connecting onboarding guide")
|
||||
}
|
||||
resp.Body.Close()
|
||||
|
||||
|
@ -342,8 +342,6 @@ func onboardAction(ctx *cli.Context) error {
|
|||
for {
|
||||
time.Sleep(1 * time.Second)
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
// fatal writes the passed error on the standard error and exits with the exit
|
||||
|
|
Loading…
Reference in a new issue