Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Attempt E2E flaking fix #5256

Merged
merged 3 commits into from Mar 31, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions endtoend/params/params.go
Expand Up @@ -45,7 +45,7 @@ func Init(beaconNodeCount int) error {
}
testIndexStr, ok := os.LookupEnv("TEST_SHARD_INDEX")
if !ok {
testIndexStr = "0"
testIndexStr = "8"
}
testIndex, err := strconv.Atoi(testIndexStr)
if err != nil {
Expand All @@ -57,7 +57,7 @@ func Init(beaconNodeCount int) error {
LogPath: logPath,
TestShardIndex: testIndex,
BeaconNodeCount: beaconNodeCount,
Eth1RPCPort: 3000 + testIndex*100, //Multiplying 100 here so the test index doesn't conflict with the other node ports.
Eth1RPCPort: 3000 + testIndex*100, // Multiplying 100 here so the test index doesn't conflict with the other node ports.
BeaconNodeRPCPort: 4000 + testIndex*100,
BeaconNodeMetricsPort: 5000 + testIndex*100,
ValidatorMetricsPort: 6000 + testIndex*100,
Expand Down