You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 25, 2021. It is now read-only.
Consul 1.8.1 upgraded alpine (hashicorp/docker-consul#149) which included a newer version of timeout that takes the timeout as an argument instead of with the -t flag.
Before:
timeout
BusyBox v1.29.3 (2019-01-24 07:45:07 UTC) multi-call binary.
Usage: timeout [-t SECS] [-s SIG] PROG ARGS
Runs PROG. Sends SIG to it if it is not gone in SECS seconds.
Defaults: SECS: 10, SIG: TERM.
Now:
timeout -s
timeout: option requires an argument: s
BusyBox v1.31.1 () multi-call binary.
Usage: timeout [-s SIG] SECS PROG ARGS
Runs PROG. Sends SIG to it if it is not gone in SECS seconds.
Default SIG: TERM.
The text was updated successfully, but these errors were encountered:
Consul 1.8.1 upgraded alpine (hashicorp/docker-consul#149) which included a newer version of
timeout
that takes the timeout as an argument instead of with the-t
flag.Before:
Now:
The text was updated successfully, but these errors were encountered: