From 2f2dccd30c733676252838941ac9108fb89a92ae Mon Sep 17 00:00:00 2001 From: Thomas Stromberg Date: Thu, 26 Mar 2020 14:05:02 -0700 Subject: [PATCH] Remove test values --- pkg/drivers/kic/oci/oci.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/drivers/kic/oci/oci.go b/pkg/drivers/kic/oci/oci.go index bfa1d0233c..af6cd19c50 100644 --- a/pkg/drivers/kic/oci/oci.go +++ b/pkg/drivers/kic/oci/oci.go @@ -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()