Skip to content

Commit

Permalink
Merge branch 'ccip-develop' into TT-1396
Browse files Browse the repository at this point in the history
  • Loading branch information
AnieeG authored Aug 28, 2024
2 parents fb10bf3 + 8572a7a commit 5ff5ba6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
9 changes: 8 additions & 1 deletion integration-tests/ccip-tests/load/helper.go
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,15 @@ func (l *LoadArgs) scheduleForDest(destNetworkName string) []*wasp.Segment {
// if found, use that frequency for the destination network
// otherwise, use the default frequency
if l.TestCfg.TestGroupInput.LoadProfile.FrequencyByDestination != nil {
l.lggr.Debug().
Interface("FrequencyByDestination", l.TestCfg.TestGroupInput.LoadProfile.FrequencyByDestination).
Msg("LoadProfile provided")
for networkName, freq := range l.TestCfg.TestGroupInput.LoadProfile.FrequencyByDestination {
if strings.Contains(destNetworkName, strings.ToLower(networkName)) {
l.lggr.Debug().Str("Destination", destNetworkName).Str("NetworkName", networkName).Msg("Checking frequency for destination")
if strings.EqualFold(destNetworkName, networkName) {
l.lggr.Info().Str("Destination", destNetworkName).
Ints64("RequestPerUnitTime", freq.RequestPerUnitTime).
Msg("Using frequency for destination")
return WaspSchedule(
freq.RequestPerUnitTime,
l.TestCfg.TestGroupInput.LoadProfile.TestDuration,
Expand Down
3 changes: 1 addition & 2 deletions integration-tests/ccip-tests/testsetups/test_env.go
Original file line number Diff line number Diff line change
Expand Up @@ -490,8 +490,7 @@ func DeployEnvironments(
"fullnameOverride": actions.NetworkName(network.Name),
"image": map[string]interface{}{
"repository": "ghcr.io/foundry-rs/foundry",
"tag": "nightly-5ac78a9cd4b94dc53d1fe5e0f42372b28b5a7559",
// "tag": "nightly-ea2eff95b5c17edd3ffbdfc6daab5ce5cc80afc0",
"tag": "nightly-2442e7a5fc165d7d0b022aa8b9f09dcdf675157b",
},
"anvil": map[string]interface{}{
"chainId": fmt.Sprintf("%d", network.ChainID),
Expand Down

0 comments on commit 5ff5ba6

Please sign in to comment.