Fix blocked goal unblocking with dependencies bug#17
Draft
Conversation
Co-authored-by: SupraSummus <15822143+SupraSummus@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] i think there is a bug when we schedule blcked goal, add dependency, unblock the goal, allow it run.or maybe this is with one more inter-dependency in chain? pls check that
Fix blocked goal unblocking with dependencies bug
Aug 23, 2025
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 join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Fixed a bug in the goal state transition logic where blocked goals with dependencies would transition to incorrect states when unblocked.
Problem
The issue occurred in this scenario:
WAITING_FOR_DATEinstead of the appropriate stateThe root cause was in the
_mark_as_unfailed()function, which always set goals toWAITING_FOR_DATEstate regardless of their preconditions or date constraints.Example
Solution
Updated
_mark_as_unfailed()to determine the correct state transition based on:WAITING_FOR_DATE(preserves original behavior)WAITING_FOR_PRECONDITIONSWAITING_FOR_DATE(let normal flow handle transition toWAITING_FOR_WORKER)Also fixed:
waiting_for_failed_countfrom going negative by adding bounds checkingPROCEEDfailure behavior when goals are unfailedTesting
Added comprehensive test case
test_blocked_goal_with_dependencies_unblock_transitionsthat covers both scenarios (achieved and unachieved preconditions). All existing tests continue to pass.💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.