Skip to content

Commit

Permalink
Fix small lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenvp8510 committed Jun 26, 2019
2 parents 828cf7a + cd33415 commit 95738f8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ Then install dependencies and run the tests:

```
git submodule update --init --recursive
make install-tools
dep ensure
make install-tools
make test
```

Expand Down
2 changes: 1 addition & 1 deletion pkg/kafka/auth/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (
const none = "none"
const kerberos = "kerberos"

var authTypes = []string{
var authTypes = []string {
none,
kerberos,
}
Expand Down
2 changes: 1 addition & 1 deletion pkg/kafka/auth/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ func AddFlags(configPrefix string, flagSet *flag.FlagSet) {
flagSet.String(
configPrefix+suffixAuthentication,
defaultAuthentication,
"Authentication type used to authenticate with kafka cluster. e.g. "+strings.Join(authTypes, ", "),
"Authentication type used to authenticate with kafka cluster. e.g. " + strings.Join(authTypes,", "),
)
addKerberosFlags(configPrefix, flagSet)
}

0 comments on commit 95738f8

Please sign in to comment.