-
Notifications
You must be signed in to change notification settings - Fork 236
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
jsonrpc implementation upgraded to support more features #3900
Comments
Seems https://github.com/paritytech/jsonrpc/blob/master/http/src/handler.rs#L255 Anyway, |
@chenyukang We can't use |
We could use The code sample: Testing with: curl --location 'http://127.0.0.1:3000/rpc' \
-H 'content-length: 100' \
--header 'Content-Type: application/json' \
--data-raw ' {
"id": 42,
"jsonrpc": "2.0",
"method": "@ping",
"params": [
]
}' Output should be: Request took too long |
#3880
The currently used jsonrpc implementation does not support configurations such as client body read timeout, researching new options, an optional alternate is jsonrpsee, but it lacks tcp mode, or via jsonrpc-utils to build a new framework
The text was updated successfully, but these errors were encountered: