chore(deps): bump agentfield floor to 0.1.82#32
Merged
Conversation
Picks up the polling-task pause-aware overdue-check fix shipped in agentfield v0.1.82 (Agent-Field/agentfield#564). v0.1.81 made the ``wait_for_result`` loop pause-aware, but missed the second wallclock overdue check inside ``_poll_active_executions`` — so a parent waiting on a child sitting in ``waiting`` for hours still got flipped to TIMEOUT at exactly the wallclock budget. v0.1.82 attaches the parent PauseClock to the awaited ExecutionState so both the wait loop and the polling task read paused-time from the same source. Bumping the floor (rather than relying on the existing constraint) so Docker layer caching does not restore the old layer with v0.1.81. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
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.
Summary
agentfieldfloor from>=0.1.81to>=0.1.82.Why
v0.1.81 only got half the pause-propagation fix:
wait_for_results own loop became pause-aware, but the manager's background polling task (_poll_active_executions) kept calling the wallclock-onlyis_overduecheck on every cycle. Aftertimeoutseconds of wallclock — regardless of how much was spent in the awaited child'swaitingstate — it flipped the local execution to TIMEOUT and the wait loop surfaced it asExecutionTimeoutError("Execution timed out after N seconds").v0.1.82 attaches the parent PauseClock to the awaited
ExecutionStateso both the wait loop and the polling task read paused-time from the same source. Now the parent budget actually means "active wallclock," matching the contractexpires_in_hoursalready implied forAgent.pause().Test plan
max_execution_timeoutof active time across long human-approval pauses, instead of timing out at exactly the wallclock budget.🤖 Generated with Claude Code