Skip to content

Commit ae75746

Browse files
committed
lint, mod tidy, fmt
1 parent edf020d commit ae75746

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ require (
99
github.com/alessio/shellescape v1.4.1
1010
github.com/brevdev/parse v0.0.11
1111
github.com/briandowns/spinner v1.16.0
12+
github.com/cenkalti/backoff/v4 v4.3.0
1213
github.com/fatih/color v1.13.0
1314
github.com/getsentry/sentry-go v0.14.0
1415
github.com/gin-gonic/gin v1.10.0
@@ -57,7 +58,6 @@ require (
5758
github.com/blang/semver/v4 v4.0.0 // indirect
5859
github.com/bytedance/sonic v1.11.6 // indirect
5960
github.com/bytedance/sonic/loader v0.1.1 // indirect
60-
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
6161
github.com/cloudflare/circl v1.6.1 // indirect
6262
github.com/cloudwego/base64x v0.1.4 // indirect
6363
github.com/cloudwego/iasm v0.2.0 // indirect

pkg/cmd/register/register.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ func grantSSHAccess(ctx context.Context, t *terminal.Terminal, deps registerDeps
365365
t.Vprintf(" SSH access not yet granted; retrying in: %s...\n", d.Round(backoffPrintRound))
366366
}
367367

368-
// Retry until the operation succeeds or the context is cancelled.
368+
// Retry until the operation succeeds or the context is canceled.
369369
err := backoff.RetryNotify(opToTry, backoffCtx, onOpErr)
370370
if err != nil {
371371
t.Vprintf(" Warning: SSH access not granted: %v\n", err)

0 commit comments

Comments
 (0)