Compare commits

...

1 Commits

Author SHA1 Message Date
sstone
d909e06345 bitcoin rpc client: increase the number of concurrent requests
this is a workaround for Exceeded configured max-open-requests errors when
sending too many rpc requests to bitcoin core.
see  http://doc.akka.io/docs/akka-http/current/scala/http/client-side/pool-overflow.html
for more information
2017-11-21 19:37:49 +01:00

View File

@ -95,7 +95,7 @@ akka {
http {
host-connection-pool {
max-open-requests = 64
max-open-requests = 256
}
}
}