Skip to content

Commit

Permalink
Endret batch size for merge detector
Browse files Browse the repository at this point in the history
  • Loading branch information
nilsmsa committed Oct 28, 2024
1 parent 8788d7a commit 868e1ca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ fun Routing.konfigurereHelse(
get("internal/mergeDetector") {
call.respondText(
mergeDetector
.findMerges(1000)
.findMerges(500)
.map { "Number of pending merges: ${it.size } "}
.onRight { mergeLogger.info(it) }
.onLeft { mergeLogger.error("Error: ${it.system}:${it.code}", it.exception) }
Expand Down

0 comments on commit 868e1ca

Please sign in to comment.