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

Loading…
Cancel
Save