Skip to content

Commit

Permalink
akka-loader: max-open-requests fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Blackmorse committed Jan 11, 2025
1 parent eb3bf9d commit 0c56cca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ abstract class AbstractHttpFlow[Request <: AbstractRequest[Model], Model] {

import system.dispatcher
Flow[(Request, T)]
.mapAsyncUnordered(32) {
.mapAsyncUnordered(512) {
case (request, t) =>
ChppRequestExecutor.executeWithRetry(request)
.recover {
Expand Down

0 comments on commit 0c56cca

Please sign in to comment.