-
Notifications
You must be signed in to change notification settings - Fork 329
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
Fixes after testing with GM #974
Conversation
relayer/src/supervisor.rs
Outdated
@@ -273,6 +273,11 @@ impl Supervisor { | |||
} | |||
} | |||
|
|||
// At least one chain runtime should be alive and kicking, otherwise bail. |
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.
funny comment but what does it mean exactly?
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.
I meant to say that if the vector of chain runtimes (self.registry
) is empty, that means no chain runtime could be instantiated, so the supervisor (i) cannot spawn any worker and (ii) has no subscription to any chain to select
on. I'll use more accurate language here!
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.
also #972 (comment)
I am not able to see that panic. What are the steps to see that? I tried to start hermes without any chains started and also tried to kill the chain procs while hermes is running.
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.
Ok, let's merge this so the client worker is fixed. Thanks again for finding this!!!
* Fix panic when all chains are unreachable * Fix for reverse params in client worker. * FMT fix * Removed useseless format * Better comment. Changelog
Closes: #972
Description
For contributor use:
docs/
) and code comments.Files changed
in the Github PR explorer.