Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/four-terms-warn.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"chainlink-deployments-framework": patch
---

fix(jd): remove wsrpc from error message
2 changes: 1 addition & 1 deletion engine/cld/environment/environment.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion engine/cld/environment/fork.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down