You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Raise command-client max_frame_size to 10 MiB.AsyncCommandClient and CommandClient now set max_size=10 MiB on their short-lived WebSocket RPC connections, matching the daemon transport.websocket.max_frame_size default. Previously they omitted max_size, so the websockets library fell back to its 1 MiB default and the daemon closed the connection with code 1009 (message too big) on large replies such as autopilot_list_goals — which broke soothe ap goals and any other soothe ap RPC whose response exceeded 1 MiB.
Compatibility
No API breakage. max_frame_size is a new optional keyword argument on both AsyncCommandClient and CommandClient, defaulting to 10 MiB.