Skip to content

Commit b8ba0d3

Browse files
committed
fixed typo.
1 parent 023af57 commit b8ba0d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/services/baremetal/host/host.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1113,7 +1113,7 @@ func (s *Service) actionPreProvisioning(ctx context.Context) actionResult {
11131113

11141114
out := sshClient.GetHostName()
11151115
if out.Err != nil || out.StdErr != "" {
1116-
ctrl.LoggerFrom(ctx).Info("pre-provision: rescue sytem not reachable. Will try again",
1116+
ctrl.LoggerFrom(ctx).Info("pre-provision: rescue system not reachable. Will try again",
11171117
"sshOutput", out.String())
11181118
return actionContinue{delay: 10 * time.Second}
11191119
}
@@ -1161,7 +1161,7 @@ func (s *Service) actionImageInstalling(ctx context.Context) actionResult {
11611161

11621162
out := sshClient.GetHostName()
11631163
if out.Err != nil || out.StdErr != "" {
1164-
ctrl.LoggerFrom(ctx).Info("image-installing: rescue sytem not reachable. Will try again",
1164+
ctrl.LoggerFrom(ctx).Info("image-installing: rescue system not reachable. Will try again",
11651165
"sshOutput", out.String())
11661166
return actionContinue{delay: 10 * time.Second}
11671167
}

0 commit comments

Comments
 (0)