Skip to content

fix: respect wait flag on ping #11896

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: respect wait flag on ping
  • Loading branch information
f0ssel committed Jan 29, 2024
commit 4742dba0a2aa9971415006830140a3491002551e
2 changes: 1 addition & 1 deletion cli/ping.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ func (r *RootCmd) ping() *clibase.Cmd {
start := time.Now()
for {
if n > 0 {
time.Sleep(time.Second)
time.Sleep(pingWait)
}
n++

Expand Down