Skip to content

Commit

Permalink
Merge pull request #2244 from patrickdillon/gather-error-msg
Browse files Browse the repository at this point in the history
Update error message when automatic gather boostrap fails on cluster fail.
  • Loading branch information
openshift-merge-robot committed Aug 28, 2019
2 parents 85bda02 + 2992564 commit b0abc58
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/openshift-install/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,9 @@ var (
err = waitForBootstrapComplete(ctx, config, rootOpts.dir)
if err != nil {
if err2 := runGatherBootstrapCmd(rootOpts.dir); err2 != nil {
logrus.Error(err2)
logrus.Error("Attempted to gather debug logs after installation failure: ", err2)
}
logrus.Fatal(err)
logrus.Fatal("Bootstrap failed to complete: ", err)
}

logrus.Info("Destroying the bootstrap resources...")
Expand Down

0 comments on commit b0abc58

Please sign in to comment.