Skip to content

Commit

Permalink
Fix error message
Browse files Browse the repository at this point in the history
  • Loading branch information
imcsk8 committed Jan 3, 2018
1 parent ca87845 commit fd3af25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/network/node/healthcheck.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ func runOVSHealthCheck(network, addr string, healthFn func() error) {
return false, nil
}
if err := healthFn(); err != nil {
return false, fmt.Errorf("OVS health check failed, %v", err)
return false, fmt.Errorf("OVS health check failed: %v", err)
}
return true, nil
})
Expand Down

0 comments on commit fd3af25

Please sign in to comment.