From c35738cf1034e72b896678368432c92e071925b1 Mon Sep 17 00:00:00 2001 From: Anastasios Papagiannis Date: Thu, 19 Sep 2024 06:05:42 +0000 Subject: [PATCH] [jsonchecker] Remove const from parameters In https://github.com/cilium/tetragon/commit/62957f104 we changed the Retries and RetryDelay from var to const. This patch reverst that change as we may need to adjust them based on the test needs. Signed-off-by: Anastasios Papagiannis --- pkg/jsonchecker/jsonchecker.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/jsonchecker/jsonchecker.go b/pkg/jsonchecker/jsonchecker.go index d0350bdafec..3c2185c3b77 100644 --- a/pkg/jsonchecker/jsonchecker.go +++ b/pkg/jsonchecker/jsonchecker.go @@ -20,7 +20,7 @@ import ( "github.com/sirupsen/logrus" ) -const ( +var ( Retries = 13 RetryDelay = 3 * time.Second )