diff --git a/.github/workflows/automation-benchmark-tests.yml b/.github/workflows/automation-benchmark-tests.yml index 0b0404e0e07..d3f0caa3903 100644 --- a/.github/workflows/automation-benchmark-tests.yml +++ b/.github/workflows/automation-benchmark-tests.yml @@ -76,7 +76,8 @@ jobs: TEST_TYPE: ${{ github.event.inputs.testType }} TEST_TEST_TYPE: ${{ github.event.inputs.testType }} RR_MEM: 4Gi - TEST_LOG_LEVEL: info + TEST_LOG_LEVEL: debug + TEST_SETH_LOG_LEVEL: debug with: test_command_to_run: cd integration-tests && go test -timeout 30m -v -run ^TestAutomationBenchmark$ ./benchmark -count=1 test_download_vendor_packages_command: make gomod diff --git a/integration-tests/testconfig/testconfig.go b/integration-tests/testconfig/testconfig.go index ff2ddf3a449..8cc93bb4e47 100644 --- a/integration-tests/testconfig/testconfig.go +++ b/integration-tests/testconfig/testconfig.go @@ -306,6 +306,10 @@ func GetConfig(configurationName string, product Product) (TestConfig, error) { if err != nil { return TestConfig{}, errors.Wrapf(err, "error unmarshalling embedded config") } + + if testConfig.Seth != nil { + logger.Warn().Msgf("Ephemeral keys: %d", *testConfig.Seth.EphemeralAddrs) + } } } @@ -331,6 +335,10 @@ func GetConfig(configurationName string, product Product) (TestConfig, error) { if err != nil { return TestConfig{}, errors.Wrapf(err, "error reading file %s", filePath) } + + if testConfig.Seth != nil { + logger.Warn().Msgf("Ephemeral keys: %d", *testConfig.Seth.EphemeralAddrs) + } } logger.Info().Msg("Reading configs from Base64 override env var") @@ -350,6 +358,10 @@ func GetConfig(configurationName string, product Product) (TestConfig, error) { logger.Debug().Msg("Base64 config override from environment variable not found") } + if testConfig.Seth != nil { + logger.Warn().Msgf("Ephemeral keys: %d", *testConfig.Seth.EphemeralAddrs) + } + // it neede some custom logic, so we do it separately err := testConfig.readNetworkConfiguration() if err != nil {