Skip to content

Commit

Permalink
[jsonchecker] Remove const from parameters
Browse files Browse the repository at this point in the history
In 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 <[email protected]>
  • Loading branch information
tpapagian authored and kkourt committed Sep 19, 2024
1 parent 2558359 commit c35738c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/jsonchecker/jsonchecker.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
"github.com/sirupsen/logrus"
)

const (
var (
Retries = 13
RetryDelay = 3 * time.Second
)
Expand Down

0 comments on commit c35738c

Please sign in to comment.