-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BCFR-1086 return finality violation error in health report #15548
Changes from 2 commits
0941519
d99a2c3
af23389
0ef6201
baae23f
2a5749f
3c77161
ab8add5
ab39c5b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ | |
github.com/prometheus/client_golang v1.20.5 | ||
github.com/shopspring/decimal v1.4.0 | ||
github.com/smartcontractkit/chainlink-automation v0.8.1 | ||
github.com/smartcontractkit/chainlink-common v0.3.1-0.20241206011233-b6684ee6508f | ||
github.com/smartcontractkit/chainlink-common v0.3.1-0.20241206164131-6adad2cb8117 | ||
Check failure on line 29 in core/scripts/go.mod GitHub Actions / Validate go.mod dependencies
|
||
github.com/smartcontractkit/chainlink/deployment v0.0.0-00010101000000-000000000000 | ||
github.com/smartcontractkit/chainlink/v2 v2.14.0-mercury-20240807.0.20241106193309-5560cd76211a | ||
github.com/smartcontractkit/libocr v0.0.0-20241007185508-adbe57025f12 | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,7 +25,7 @@ | |
github.com/smartcontractkit/ccip-owner-contracts v0.0.0-20240926212305-a6deabdfce86 | ||
github.com/smartcontractkit/chain-selectors v1.0.31 | ||
github.com/smartcontractkit/chainlink-ccip v0.0.0-20241204015713-8956bb614e9e | ||
github.com/smartcontractkit/chainlink-common v0.3.1-0.20241206011233-b6684ee6508f | ||
github.com/smartcontractkit/chainlink-common v0.3.1-0.20241206164131-6adad2cb8117 | ||
Check failure on line 28 in deployment/go.mod GitHub Actions / Validate go.mod dependencies
|
||
github.com/smartcontractkit/chainlink-protos/job-distributor v0.6.0 | ||
github.com/smartcontractkit/chainlink-testing-framework/lib v1.50.13 | ||
github.com/smartcontractkit/chainlink/v2 v2.0.0-00010101000000-000000000000 | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -79,7 +79,7 @@ | |
github.com/smartcontractkit/chain-selectors v1.0.31 | ||
github.com/smartcontractkit/chainlink-automation v0.8.1 | ||
github.com/smartcontractkit/chainlink-ccip v0.0.0-20241204015713-8956bb614e9e | ||
github.com/smartcontractkit/chainlink-common v0.3.1-0.20241206011233-b6684ee6508f | ||
github.com/smartcontractkit/chainlink-common v0.3.1-0.20241206164131-6adad2cb8117 | ||
Check failure on line 82 in go.mod GitHub Actions / Validate go.mod dependencies
|
||
github.com/smartcontractkit/chainlink-cosmos v0.5.2-0.20241202195413-82468150ac1e | ||
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20241202141438-a90db35252db | ||
github.com/smartcontractkit/chainlink-feeds v0.1.1 | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,7 +41,7 @@ | |
github.com/smartcontractkit/chain-selectors v1.0.31 | ||
github.com/smartcontractkit/chainlink-automation v0.8.1 | ||
github.com/smartcontractkit/chainlink-ccip v0.0.0-20241204015713-8956bb614e9e | ||
github.com/smartcontractkit/chainlink-common v0.3.1-0.20241206011233-b6684ee6508f | ||
github.com/smartcontractkit/chainlink-common v0.3.1-0.20241206164131-6adad2cb8117 | ||
Check failure on line 44 in integration-tests/go.mod GitHub Actions / Validate go.mod dependencies
|
||
github.com/smartcontractkit/chainlink-protos/job-distributor v0.6.0 | ||
github.com/smartcontractkit/chainlink-testing-framework/havoc v1.50.2 | ||
github.com/smartcontractkit/chainlink-testing-framework/lib v1.50.18 | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ | |
github.com/pkg/errors v0.9.1 | ||
github.com/rs/zerolog v1.33.0 | ||
github.com/slack-go/slack v0.15.0 | ||
github.com/smartcontractkit/chainlink-common v0.3.1-0.20241206011233-b6684ee6508f | ||
github.com/smartcontractkit/chainlink-common v0.3.1-0.20241206164131-6adad2cb8117 | ||
Check failure on line 22 in integration-tests/load/go.mod GitHub Actions / Validate go.mod dependencies
|
||
github.com/smartcontractkit/chainlink-testing-framework/lib v1.50.18 | ||
github.com/smartcontractkit/chainlink-testing-framework/seth v1.50.9 | ||
github.com/smartcontractkit/chainlink-testing-framework/wasp v1.50.2 | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ideally the CR Healthy() implementation should append all reports from underlying components like ht, lp, client, etc.
But I assume for now you are only worried about making FV work.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good point. Initially, I thought HT and the Client did not support reports, but it turns out that I've checked HT's interface instead of implementation.
Added propagation of HT reports. Created aticket to also implement it for client.