We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee27a79 commit 5e867e2Copy full SHA for 5e867e2
pkg/migrator/migrator_test.go
@@ -107,7 +107,7 @@ func TestMigrateWithRetry(t *testing.T) {
107
start := time.Now()
108
// Return an error during the first 500 milliseconds
109
dclient.PrependReactor("list", "*",
110
- func(act k8stesting.Action) (bool, runtime.Object, error) {
+ func(_ k8stesting.Action) (bool, runtime.Object, error) {
111
if time.Since(start) < 500*time.Millisecond {
112
return true, nil, errors.New("failed to list resources")
113
}
0 commit comments