Skip to content

Commit

Permalink
chore: more capacity to MEMBER_SYNC & COMMIT_SYNC routes
Browse files Browse the repository at this point in the history
  • Loading branch information
jachro committed Mar 8, 2023
1 parent c66ae4b commit a620442
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,6 @@ private object EventHandler {
def apply[F[_]: Async: GitLabClient: AccessTokenFinder: Logger: MetricsRegistry: ExecutionTimeRecorder]
: F[consumers.EventHandler[F]] = for {
commitEventSynchronizer <- CommitsSynchronizer[F]
processExecutor <- ProcessExecutor.concurrent(10)
processExecutor <- ProcessExecutor.concurrent(100)
} yield new EventHandler[F](categoryName, commitEventSynchronizer, processExecutor)
}
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,6 @@ private object EventHandler {
: F[consumers.EventHandler[F]] = for {
tsReadinessChecker <- TSReadinessForEventsChecker[F]
membersSynchronizer <- MembersSynchronizer[F]
processExecutor <- ProcessExecutor.concurrent(processesCount = 5)
processExecutor <- ProcessExecutor.concurrent(processesCount = 100)
} yield new EventHandler[F](categoryName, tsReadinessChecker, membersSynchronizer, processExecutor)
}

0 comments on commit a620442

Please sign in to comment.