v1.3.116
v1.3.116
Fixed
- A2A CancelTask done-channel leak:
CancelTask()directly set the task status to canceled without closing thedonechannel, unlikeupdateStatus(). For tasks ininput-requiredstate (no execute goroutine running), any caller waiting onDone()would block forever after cancellation. Now closesdoneinline before cancelling the context.