Make JsonRpcHttpService to not attend requests in order (#4099)

Signed-off-by: Diego López León <dieguitoll@gmail.com>
pull/4133/head
Diego López León 2 years ago committed by GitHub
parent 3ce7f0ff7a
commit a08ee362ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      ethereum/api/src/main/java/org/hyperledger/besu/ethereum/api/jsonrpc/JsonRpcHttpService.java

@ -339,7 +339,8 @@ public class JsonRpcHttpService {
authenticationService.get(),
config.getNoAuthRpcApis()),
rpcMethods),
tracer));
tracer),
false);
} else {
mainRoute.blockingHandler(
HandlerFactory.jsonRpcExecutor(
@ -347,7 +348,8 @@ public class JsonRpcHttpService {
new TimedJsonRpcProcessor(
new TracedJsonRpcProcessor(new BaseJsonRpcProcessor()), requestTimer),
rpcMethods),
tracer));
tracer),
false);
}
if (authenticationService.isPresent()) {

Loading…
Cancel
Save