mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-09-18 20:14:48 -04:00
chore: fix unused parameter lint in new golangcilint version
This commit is contained in:
parent
68fc2b0811
commit
65903459a0
35 changed files with 92 additions and 92 deletions
|
@ -29,7 +29,7 @@ type CloudKubeAPIWaiter struct{}
|
|||
// Wait waits for the Kubernetes API to be available.
|
||||
// Note that the kubernetesClient must have the kubeconfig already set.
|
||||
func (w *CloudKubeAPIWaiter) Wait(ctx context.Context, kubernetesClient KubernetesClient) error {
|
||||
funcAlwaysRetriable := func(err error) bool { return true }
|
||||
funcAlwaysRetriable := func(_ error) bool { return true }
|
||||
|
||||
doer := &kubeDoer{kubeClient: kubernetesClient}
|
||||
retrier := retry.NewIntervalRetrier(doer, 5*time.Second, funcAlwaysRetriable)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue