Skip to content

Commit b0abc58

Browse files
Merge pull request #2244 from patrickdillon/gather-error-msg
Update error message when automatic gather boostrap fails on cluster fail.
2 parents 85bda02 + 2992564 commit b0abc58

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cmd/openshift-install/create.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,9 @@ var (
9797
err = waitForBootstrapComplete(ctx, config, rootOpts.dir)
9898
if err != nil {
9999
if err2 := runGatherBootstrapCmd(rootOpts.dir); err2 != nil {
100-
logrus.Error(err2)
100+
logrus.Error("Attempted to gather debug logs after installation failure: ", err2)
101101
}
102-
logrus.Fatal(err)
102+
logrus.Fatal("Bootstrap failed to complete: ", err)
103103
}
104104

105105
logrus.Info("Destroying the bootstrap resources...")

0 commit comments

Comments
 (0)