Skip to content

Commit 9c39677

Browse files
committed
go fmt
Signed-off-by: Markus Blaschke <mblaschke82@gmail.com>
1 parent 42684f9 commit 9c39677

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

cloudprovider/azure.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ func (m *CloudProviderAzure) FetchToken() (token *bootstraptoken.BootstrapToken)
8181
// disabled secret, continue as there would be no token
8282
log.Warn("current secret is disabled, assuming non existing token")
8383
err = nil
84-
break;
84+
break
8585
case "ForbiddenByPolicy":
8686
// access is forbidden
8787
log.Error("unable to access Azure KeyVault, please check access")

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ func main() {
3535
log.Info(string(opts.GetJson()))
3636

3737
manager := manager.KubeBootstrapTokenManager{
38-
Opts: opts,
38+
Opts: opts,
3939
Version: gitTag,
4040
}
4141

manager/manager.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323

2424
type (
2525
KubeBootstrapTokenManager struct {
26-
Opts config.Opts
26+
Opts config.Opts
2727
Version string
2828

2929
ctx context.Context

0 commit comments

Comments
 (0)