Conversation
…ecorator Error returns from a2a_send_message (and other A2AClientToolProvider methods) included status='error' but no 'content' key. The @tool decorator's _wrap_tool_result only preserves error status when both 'status' and 'content' keys are present. Without 'content', the error dict was wrapped as status='success' text content, preventing downstream hooks and middleware from detecting tool failures. Add 'content' key to all error returns while preserving existing keys for backward compatibility. Fixes strands-agents#606
alisknox
requested a deployment
to
manual-approval
September 15, 2026 23:45 — with
GitHub Actions
Waiting
This branch is waiting to be deployed
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.
Description
Error returns from
a2a_send_message(and other A2AClientToolProvider methods) includedstatus='error'but nocontentkey. The@tooldecorator's_wrap_tool_resultonly preserves error status when bothstatusandcontentkeys are present. Withoutcontent, the error dict was wrapped asstatus='success'text content, preventing downstream hooks and middleware from detecting tool failures.Add
contentkey to all error returns while preserving existing keys for backward compatibility.Related Issues
Fixes #606
Documentation PR
None
Type of Change
Bug fix
Testing
How have you tested the change? Verify that the changes do not break functionality or introduce warnings in consuming repositories: agents-docs, agents-tools, agents-cli
hatch run prepareChecklist
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.