Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkg/cluster/manager/upgrade.go
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ This operation will upgrade %s %s cluster %s (with a concurrency of %d) to %s:%s
}()
select {
case <-time.After(restartTimeout):
fmt.Printf("\nTimeout, continueing\n")
fmt.Printf("\nTimeout, continuing\n")
case <-ch:
}
}
Expand Down
2 changes: 1 addition & 1 deletion pkg/repository/mirror.go
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ func (l *httpMirror) Publish(manifest *v1manifest.Manifest, info model.Component
defer resp.Body.Close()

if resp.StatusCode >= 300 {
return errors.Errorf("error on uplaod tarball, server returns %d", resp.StatusCode)
return errors.Errorf("error on upload tarball, server returns %d", resp.StatusCode)
}
}

Expand Down
Loading