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
{{ message }}
This repository has been archived by the owner on Oct 1, 2021. It is now read-only.
6 Batch
To send several Request objects at the same time, the Client MAY send an Array filled with Request objects.
This currently (aiohttp-json-rpc 0.12.1) fails as:
future: <Task finished coro=<JsonRpc._handle_rpc_msg() done, defined at venv/lib/python3.6/site-packages/aiohttp_json_rpc/rpc.py:280> exception=AttributeError("'list' object has no attribute 'get'",)>
Traceback (most recent call last):
File "venv/lib/python3.6/site-packages/aiohttp_json_rpc/rpc.py", line 282, in _handle_rpc_msg
msg = decode_msg(raw_msg.data)
File "venv/lib/python3.6/site-packages/aiohttp_json_rpc/protocol.py", line 70, in decode_msg
raise RpcInvalidRequestError(msg_id=msg_data.get('id', None))
AttributeError: 'list' object has no attribute 'get'
The text was updated successfully, but these errors were encountered:
JSON-RPC 2.0 spec:
This currently (aiohttp-json-rpc 0.12.1) fails as:
The text was updated successfully, but these errors were encountered: