Skip to content

Commit

Permalink
increase geth capacity
Browse files Browse the repository at this point in the history
  • Loading branch information
anirudhwarrier committed Nov 14, 2023
1 parent 4640373 commit 75e0935
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions integration-tests/load/automationv2_1/automationv2_1_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ var (
blockTime, _ = strconv.Atoi(getEnv("BLOCKTIME", "1")) // Block time in seconds for geth simulated dev network
numberOfEvents, _ = strconv.Atoi(getEnv("NUMBEROFEVENTS", "1")) // Number of events to emit per trigger
specType = getEnv("SPECTYPE", "minimum") // minimum, recommended, local specs for the test
logLevel = getEnv("LOGLEVEL", "warn") // log level for the chainlink nodes
logLevel = getEnv("LOGLEVEL", "info") // log level for the chainlink nodes
debug, _ = strconv.ParseBool(getEnv("DEBUG", "false"))
)

Expand Down Expand Up @@ -196,6 +196,7 @@ func TestLogTrigger(t *testing.T) {
},
"geth": map[string]interface{}{
"blocktime": blockTime,
"capacity": "10Gi",
},
},
}))
Expand Down Expand Up @@ -527,16 +528,12 @@ func TestLogTrigger(t *testing.T) {
delay = append(delay, parsedLog.TimeToPerform.Int64())
}
if (lIter+1)%batchSize == 0 {
err = chainClient.WaitForEvents()
require.NoError(t, err, "Failed to wait for chain events")
time.Sleep(time.Second * 1)
}
}
upkeepDelays = append(upkeepDelays, delay)
}
if (cIter+1)%batchSize == 0 {
err = chainClient.WaitForEvents()
require.NoError(t, err, "Failed to wait for chain events")
time.Sleep(time.Second * 1)
}
}
Expand Down

0 comments on commit 75e0935

Please sign in to comment.