Skip to content

Commit

Permalink
Increasing timeout. Messages are sent much faster so we need to wait …
Browse files Browse the repository at this point in the history
…longer for the exec.
  • Loading branch information
mateusz-sekara committed Dec 5, 2024
1 parent 9e02e21 commit cd3d4fd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion integration-tests/smoke/ccip/ccip_usdc_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,11 @@ func updateFeeQuoters(
return changeset.UpdateFeeQuoterForUSDC(lggr, e.Chains[chainB], state.Chains[chainB], chainC, bChainUSDC)
})
updateFeeQtrGrp.Go(func() error {
return changeset.UpdateFeeQuoterForUSDC(lggr, e.Chains[chainC], state.Chains[chainC], chainA, cChainUSDC)
err1 := changeset.UpdateFeeQuoterForUSDC(lggr, e.Chains[chainC], state.Chains[chainC], chainA, cChainUSDC)
if err1 != nil {
return err1
}
return changeset.UpdateFeeQuoterForUSDC(lggr, e.Chains[chainC], state.Chains[chainC], chainB, cChainUSDC)
})
return updateFeeQtrGrp.Wait()
}

0 comments on commit cd3d4fd

Please sign in to comment.