Skip to content

Commit 6127166

Browse files
authored
chore(lint): need to remove noling due to pinned golangci-lint version (#1587)
1 parent fc1695e commit 6127166

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

command/ca/provisioner/caConfigClient.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,7 @@ func newCaConfigClient(ctx context.Context, cfg *config.Config, cfgFile string)
9393
}
9494
}
9595
a, err := authority.New(cfg, authority.WithAdminDB(newNoDB()),
96-
authority.WithSkipInit(), authority.WithProvisioners(provClxn)) //nolint:staticcheck // TODO: WithProvisioners has been deprecated, temporarily do not lint this line.
97-
96+
authority.WithSkipInit(), authority.WithProvisioners(provClxn))
9897
if err != nil {
9998
return nil, errors.Wrapf(err, "error loading authority")
10099
}

0 commit comments

Comments
 (0)