From 32698539725e11ffc2957fe7e3636a548f476e28 Mon Sep 17 00:00:00 2001 From: Mateusz Sekara Date: Mon, 20 Jan 2025 16:10:26 +0100 Subject: [PATCH] Query home chain less frequently (#15987) --- core/capabilities/ccip/delegate.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/capabilities/ccip/delegate.go b/core/capabilities/ccip/delegate.go index 536622978f6..93004a80f04 100644 --- a/core/capabilities/ccip/delegate.go +++ b/core/capabilities/ccip/delegate.go @@ -170,7 +170,7 @@ func (d *Delegate) ServicesForSpec(ctx context.Context, spec job.Job) (services hcr := ccipreaderpkg.NewObservedHomeChainReader( homeChainContractReader, d.lggr.Named("HomeChainReader"), - 100*time.Millisecond, + 15*time.Second, ccipConfigBinding, d.capabilityConfig.ExternalRegistry().ChainID(), )