Skip to content

Commit

Permalink
One last rune->byte switch
Browse files Browse the repository at this point in the history
  • Loading branch information
tstromberg committed Nov 9, 2018
1 parent 810a6c7 commit a9d7c41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/minikube/cmd/dashboard.go
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ func kubectlProxy() (*exec.Cmd, string, error) {
for {
r, timedOut, err := readByteWithTimeout(reader, 5*time.Second)
if err != nil {
return cmd, "", fmt.Errorf("readRuneWithTimeout: %v", err)
return cmd, "", fmt.Errorf("readByteWithTimeout: %v", err)
}
if r == byte('\n') {
break
Expand Down

0 comments on commit a9d7c41

Please sign in to comment.