From a48197e92159185f0cab8951d5cc9f9440e15c47 Mon Sep 17 00:00:00 2001 From: Friedrich Date: Tue, 24 Oct 2023 14:25:32 +0200 Subject: [PATCH 1/2] Update sec-scanners-config to latest build. (#178) From PR #177. https://github.com/kyma-project/eventing-manager/pull/177 --- sec-scanners-config.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sec-scanners-config.yaml b/sec-scanners-config.yaml index 70e21aa9..3d6d4a1e 100644 --- a/sec-scanners-config.yaml +++ b/sec-scanners-config.yaml @@ -1,9 +1,9 @@ module-name: eventing protecode: - - europe-docker.pkg.dev/kyma-project/prod/eventing-manager:v20231020-c5183ab4 + - europe-docker.pkg.dev/kyma-project/prod/eventing-manager:v20231024-1952a9be whitesource: language: golang-mod subprojects: false exclude: - "**/test/**" - - "**/*_test.go" \ No newline at end of file + - "**/*_test.go" From 575acd429c89cf437c6ab655abacd9fbbecd92a4 Mon Sep 17 00:00:00 2001 From: Friedrich Date: Tue, 24 Oct 2023 15:15:32 +0200 Subject: [PATCH 2/2] Increase timeout to 90 seconds in integration test. (#182) * Increase timeout to 90 seconds in integration test. * Increase timeout to 120 seconds. --- test/utils/integration/integration.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/utils/integration/integration.go b/test/utils/integration/integration.go index 5eca36d7..35ca9832 100644 --- a/test/utils/integration/integration.go +++ b/test/utils/integration/integration.go @@ -65,7 +65,7 @@ const ( testEnvStartDelay = time.Minute testEnvStartAttempts = 10 BigPollingInterval = 3 * time.Second - BigTimeOut = 60 * time.Second + BigTimeOut = 120 * time.Second SmallTimeOut = 6 * time.Second SmallPollingInterval = 1 * time.Second )