This repository was archived by the owner on Jan 27, 2026. It is now read-only.
Fix: node recovery edge case#174
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR fixes a node recovery edge case by updating the logic used for synchronizing node status and ejection. It adds a new helper function (is_node_in_pool) with separate implementations for testing and production and updates the conditions used to set node status upon receiving a heartbeat.
Comments suppressed due to low confidence (2)
orchestrator/src/node/status_update.rs:60
- The #[cfg(not(test))] branch in is_node_in_pool is not directly covered by tests. Consider adding tests for scenarios where the node is not in the pool to ensure production behavior is verified.
async fn is_node_in_pool(&self, node: &OrchestratorNode) -> bool {
orchestrator/src/node/status_update.rs:609
- The updated test assertion reflects a change in recovery behavior. Ensure that additional tests cover all relevant scenarios regarding node status transitions, particularly for nodes transitioning from Dead to Healthy.
assert_eq!(node.status, NodeStatus::Healthy);
JannikSt
added a commit
that referenced
this pull request
Apr 12, 2025
* fix edge case in node status updater where node is active on chain and sends heartbeats, but dead / discovered state locally. This caused the orchestrator to send invites (which fail on worker side)
This file contains hidden or 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
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
No description provided.