Skip to content

Commit

Permalink
Whoops
Browse files Browse the repository at this point in the history
  • Loading branch information
kke committed Oct 6, 2021
1 parent ed8bba9 commit 5b36a38
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions phase/gather_facts.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ func (p *GatherFacts) investigateHost(h *cluster.Host) error {

extra := h.InstallFlags.GetValue("--kubelet-extra-args")
if extra != "" {
unq, err := strconv.Unquote(s)
unq, err := strconv.Unquote(extra)
if err != nil {
return s
return err
}
ef := Flags{unq}
ef := cluster.Flags{unq}
if over := ef.GetValue("--hostname-override"); over != "" {
unq, err = strconv.Unquote(over)
if err != nil {
Expand Down

0 comments on commit 5b36a38

Please sign in to comment.