Skip to content

Commit

Permalink
Use delve to run the chainlink node
Browse files Browse the repository at this point in the history
  • Loading branch information
ferglor committed Dec 11, 2024
1 parent 7fea48d commit 4ed5f63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framework/components/clnode/clnode.go
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ func newNode(in *Input, pgOut *postgres.Output) (*NodeOut, error) {
ExposedPorts: exposedPorts,
Entrypoint: []string{
"/bin/sh", "-c",
"chainlink -c /config/config -c /config/overrides -c /config/user-overrides -s /config/secrets -s /config/secrets-overrides -s /config/user-secrets-overrides node start -d -p /config/node_password -a /config/apicredentials",
"dlv --listen=0.0.0.0:40000 --headless=true --continue --api-version=2 --accept-multiclient exec /usr/local/bin/chainlink -- -c /config/config -c /config/overrides -c /config/user-overrides -s /config/secrets -s /config/secrets-overrides -s /config/user-secrets-overrides node start -d -p /config/node_password -a /config/apicredentials",
},
WaitingFor: wait.ForHTTP("/").WithPort(DefaultHTTPPort).WithStartupTimeout(2 * time.Minute),
}
Expand Down

0 comments on commit 4ed5f63

Please sign in to comment.