Skip to content

Commit

Permalink
Fix CCIP Load Test Faulty Fund Return (#14499)
Browse files Browse the repository at this point in the history
* Stop fund return on nil client

* DEBUG

* Remove debug
  • Loading branch information
kalverra authored Sep 19, 2024
1 parent 3a89dce commit 014a9f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration-tests/actions/actions.go
Original file line number Diff line number Diff line change
Expand Up @@ -714,7 +714,7 @@ func TeardownSuite(
l.Warn().Msgf("Error deleting jobs %+v", err)
}

if chainlinkNodes != nil {
if chainlinkNodes != nil && chainClient != nil {
if err := ReturnFundsFromNodes(l, chainClient, contracts.ChainlinkK8sClientToChainlinkNodeWithKeysAndAddress(chainlinkNodes)); err != nil {
// This printed line is required for tests that use real funds to propagate the failure
// out to the system running the test. Do not remove
Expand Down

0 comments on commit 014a9f5

Please sign in to comment.