Fix linting issues

This commit is contained in:
Erik Wilson 2020-08-10 11:12:02 -07:00
parent c1413e1c89
commit 720197b9b1
No known key found for this signature in database
GPG Key ID: 28E43BB8BE202CF8
3 changed files with 5 additions and 6 deletions

View File

@ -11,7 +11,7 @@ import (
func main() {
app := cmds.NewApp()
app.Commands = []cli.Command{
app.Commands = []*cli.Command{
cmds.NewAgentCommand(agent.Run),
}

View File

@ -2,7 +2,6 @@ package loadbalancer
import (
"bufio"
"context"
"errors"
"fmt"
"io/ioutil"
@ -106,7 +105,7 @@ func TestFailOver(t *testing.T) {
DataDir: tmpDir,
}
lb, err := New(context.Background(), cfg.DataDir, SupervisorServiceName, cfg.ServerURL)
lb, err := New(cfg.DataDir, SupervisorServiceName, cfg.ServerURL)
if err != nil {
assertEqual(t, err, nil)
}
@ -157,7 +156,7 @@ func TestFailFast(t *testing.T) {
DataDir: tmpDir,
}
lb, err := New(context.Background(), cfg.DataDir, SupervisorServiceName, cfg.ServerURL)
lb, err := New(cfg.DataDir, SupervisorServiceName, cfg.ServerURL)
if err != nil {
assertEqual(t, err, nil)
}

View File

@ -103,7 +103,7 @@ func startWrangler(ctx context.Context, config *Config) error {
return
case <-config.ControlConfig.Runtime.APIServerReady:
if err := runControllers(ctx, config); err != nil {
logrus.Fatal("failed to start controllers: %v", err)
logrus.Fatalf("failed to start controllers: %v", err)
}
}
}()
@ -433,7 +433,7 @@ func setMasterRoleLabel(ctx context.Context, nodes v1.NodeClient) error {
node.Labels[MasterRoleLabelKey] = "true"
_, err = nodes.Update(node)
if err == nil {
logrus.Infof("master role label has been set succesfully on node: %s", nodeName)
logrus.Infof("master role label has been set successfully on node: %s", nodeName)
break
}
select {