diff --git a/.changeset/four-terms-warn.md b/.changeset/four-terms-warn.md new file mode 100644 index 00000000..a77d621a --- /dev/null +++ b/.changeset/four-terms-warn.md @@ -0,0 +1,5 @@ +--- +"chainlink-deployments-framework": patch +--- + +fix(jd): remove wsrpc from error message diff --git a/engine/cld/environment/environment.go b/engine/cld/environment/environment.go index a8da689a..c9d8c5fb 100644 --- a/engine/cld/environment/environment.go +++ b/engine/cld/environment/environment.go @@ -105,7 +105,7 @@ func Load( ) if err != nil { if errors.Is(err, offchain.ErrEndpointsRequired) { - lggr.Warn("Skipping JD initialization: gRPC and wsRPC endpoints are not set in config") + lggr.Warn("Skipping JD initialization: gRPC endpoint is not set in config") } else { return fdeployment.Environment{}, fmt.Errorf("failed to load offchain client for environment %s: %w", envKey, err) diff --git a/engine/cld/environment/fork.go b/engine/cld/environment/fork.go index ff2fb0b2..fb86f4e1 100644 --- a/engine/cld/environment/fork.go +++ b/engine/cld/environment/fork.go @@ -122,7 +122,7 @@ func LoadFork( ) if err != nil { if errors.Is(err, offchain.ErrEndpointsRequired) { - lggr.Warn("Skipping JD initialization: gRPC and wsRPC endpoints are not set in config") + lggr.Warn("Skipping JD initialization: gRPC endpoint is not set in config") } else { return ForkedEnvironment{}, fmt.Errorf("failed to load offchain client: %w", err) }