SSH: Lint and typos

This commit is contained in:
Even Holthe 2022-11-08 22:33:11 +01:00 committed by Kristoffer Dalby
parent 3695284286
commit fd6d25b5c1
3 changed files with 6 additions and 4 deletions

View file

@ -12,14 +12,15 @@ import (
func TestSSHOneNamespaceAllToAll(t *testing.T) {
IntegrationSkip(t)
retry := func(times int, sleepInverval time.Duration, doWork func() (string, error)) (string, error) {
retry := func(times int, sleepInterval time.Duration, doWork func() (string, error)) (string, error) {
var err error
for attempts := 0; attempts < times; attempts++ {
result, err := doWork()
var result string
result, err = doWork()
if err == nil {
return result, nil
}
time.Sleep(sleepInverval)
time.Sleep(sleepInterval)
}
return "", err