-
Notifications
You must be signed in to change notification settings - Fork 673
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
feat: add runtime Env to icacontroller and fix v0.52 e2e tests #7587
Merged
Merged
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit
Hold shift + click to select a range
346d83d
feat: adding runtime Environment
damiannolan 29ce5f2
chore: run make lint-fix
damiannolan 7e7d17d
chore: remove duplicate import
damiannolan 7e2f699
chore: rm duplicate import
damiannolan 7cb2468
chore: migrate to env KVStoreService in icacontroller
damiannolan cb93c24
chore: fix duplicate import
damiannolan f828f09
chore: rm kv store service
damiannolan d488054
chore: refactor events to use environment
damiannolan 92ecec1
chore: make lint-fix
damiannolan 4660322
chore: make tidy-all
damiannolan e267e42
chore: rm msg service router from icacontroller
damiannolan ab1f3f3
fix: remove 32 bit arm arch from callbacks ci builds
damiannolan 8b67d8d
test: try cache false for callbacks linter
damiannolan e27966b
chore: pin to updated interchaintest fork
chatton b6fba89
chore: revert relayer count to 10
chatton c23234d
chore: continued work on upgrading e2e tests to 0.52
chatton d83116d
chore: transfer e2e passing
chatton 82c5a66
chore: fix upgrade build errors
chatton 06d40e4
chore: bump interchaintest
chatton a128c03
chore: update sample config
chatton 55b4fbe
chore: reconfigure protoany to use gogoproto any in favour of codec t…
damiannolan b92bc67
chore: tidy imports in e2e
damiannolan f9b7314
fix: address failure in module safe query ica e2e test
damiannolan 94a4685
bump golangci version to 1.60
4f37cf6
lint: remove duplicate import
damiannolan e24c60f
chore: use gogoprotoany in favour of codec types any. rm ProtoCodecMa…
damiannolan d70f0c4
chore: bump go version in Dockerfile
damiannolan 5b89030
chore: add todo
damiannolan 5ea5802
lint: fix unnecessary cast
damiannolan 0e64412
deps: upgrade sdk to head of release/v0.52.x, upgrade store to latest…
damiannolan a0f28fc
deps: bump to head of release/v0.52
damiannolan 785dc47
fix: add unit test to reproduce e2e test failure for ScheduleIBCUpgra…
damiannolan 9057fcb
fix: error in tests
damiannolan 6ad08d9
chore: address comments from pr
damiannolan File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
chore: refactor events to use environment
- Loading branch information
commit d48805438034ea985daf9330e9930bb2ec25dac6
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
This error should be propagated and returned from this func.
The likelihood of these errors surfacing from
EventManager
are pretty much zero, but at some point in a future far away it may be possible for it to error - given a different impl of event service.None the less, its good practise to actually return the errors and not panic and rely on grpc recovery interceptor
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.
Should it have a todo comment for that, then?
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.
#7624