Remove test values

pull/7268/head
Thomas Stromberg 2020-03-26 14:05:02 -07:00
parent 46f31480df
commit 2f2dccd30c
1 changed files with 2 additions and 2 deletions

View File

@ -235,8 +235,8 @@ func ContainerID(ociBinary string, nameOrID string) (string, error) {
// WarnIfSlow runs an oci command, warning about performance issues
func WarnIfSlow(arg ...string) ([]byte, error) {
killTime := 3 * time.Millisecond
warnTime := 1 * time.Millisecond
killTime := 15 * time.Second
warnTime := 2 * time.Second
ctx, cancel := context.WithTimeout(context.Background(), killTime)
defer cancel()