Make Jaeger in E2E Sharding Aware (#9711)

Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
This commit is contained in:
Raul Jordan
2021-09-30 12:35:05 -05:00
committed by GitHub
parent 7c67d381f4
commit 26978fcc50

View File

@@ -40,7 +40,8 @@ func e2eMinimal(t *testing.T, usePrysmSh bool) {
// TODO(#9166): remove this block once v2 changes are live.
epochsToRun = helpers.AltairE2EForkEpoch - 1
}
const tracingEndpoint = "127.0.0.1:9411"
tracingPort := 9411 + e2eParams.TestParams.TestShardIndex
tracingEndpoint := fmt.Sprintf("127.0.0.1:%d", tracingPort)
evals := []types.Evaluator{
ev.PeersConnect,
ev.HealthzCheck,