diff --git a/integration-tests/ccip-tests/chaos/reorg_suite.go b/integration-tests/ccip-tests/chaos/reorg_suite.go index 28ad425bb9..c021b292ac 100644 --- a/integration-tests/ccip-tests/chaos/reorg_suite.go +++ b/integration-tests/ccip-tests/chaos/reorg_suite.go @@ -2,6 +2,7 @@ package chaos import ( "fmt" + "github.com/stretchr/testify/require" "testing" "time" @@ -188,14 +189,14 @@ func (r *ReorgSuite) RunReorgAboveFinalityThreshold(startDelay time.Duration) { r.Logger.Info(). Int64("Number", blockNumber). Msg("Block number after rewinding:") - //err = PostGrafanaAnnotation( - // r.Logger, - // r.GrafanaClient, - // r.Cfg.dashboardUID, - // fmt.Sprintf("rewinded dest chain for %d blocks back, finality is: %d", blocksBackDst, r.Cfg.DstFinalityDepth), - // nil, - //) - //require.NoError(r.t, err) + err = PostGrafanaAnnotation( + r.Logger, + r.GrafanaClient, + r.Cfg.dashboardUID, + fmt.Sprintf("rewinded dest chain for %d blocks back, finality is: %d", blocksBackDst, r.Cfg.DstFinalityDepth), + nil, + ) + require.NoError(r.t, err) time.Sleep(1 * time.Minute) //time.Sleep(r.Cfg.ExperimentDuration) }() diff --git a/integration-tests/ccip-tests/testsetups/ccip.go b/integration-tests/ccip-tests/testsetups/ccip.go index 6b7363484e..4e6b474d13 100644 --- a/integration-tests/ccip-tests/testsetups/ccip.go +++ b/integration-tests/ccip-tests/testsetups/ccip.go @@ -1105,10 +1105,10 @@ func SetupReorgSuite(t *testing.T, setupOutput *CCIPTestSetUpOutputs, testCfg *C finalityDst = setupOutput.Cfg.SelectedNetworks[1].FinalityDepth } rs, err := ch.NewReorgSuite(t, &ch.ReorgConfig{ - //SrcGethHTTPURL: setupOutput.Env.K8Env.URLs["source-chain_http"][0], - //DstGethHTTPURL: setupOutput.Env.K8Env.URLs["dest-chain_http"][0], - SrcGethHTTPURL: setupOutput.Env.LocalCluster.EVMNetworks[0].HTTPURLs[0], - DstGethHTTPURL: setupOutput.Env.LocalCluster.EVMNetworks[1].HTTPURLs[0], + SrcGethHTTPURL: setupOutput.Env.K8Env.URLs["source-chain_http"][0], + DstGethHTTPURL: setupOutput.Env.K8Env.URLs["dest-chain_http"][0], + //SrcGethHTTPURL: setupOutput.Env.LocalCluster.EVMNetworks[0].HTTPURLs[0], + //DstGethHTTPURL: setupOutput.Env.LocalCluster.EVMNetworks[1].HTTPURLs[0], SrcFinalityDepth: finalitySrc, DstFinalityDepth: finalityDst, FinalityDelta: setupOutput.Cfg.TestGroupInput.ChaosReorgProfile.FinalityDelta,