chore(bedrock): clarify tool-call decode warning to avoid double char reference

Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
This commit is contained in:
shivam 2026-07-18 20:28:35 +00:00
parent 3b843708b0
commit c2d8a4e426

View file

@ -1716,10 +1716,10 @@ def split_concatenated_json_objects(raw: str) -> List[Dict[str, Any]]:
except json.JSONDecodeError as e:
verbose_logger.warning(
"split_concatenated_json_objects: discarding unparseable tool-call "
"arguments tail after %d complete object(s); error=%s at char %d",
"arguments tail after %d complete object(s); decode_start=%d error=%s",
len(results),
e,
idx,
e,
)
break
if isinstance(obj, dict):