mirror of https://github.com/sbt/sbt.git
Finite default max iterations in resolution process
This commit is contained in:
parent
222faf18dc
commit
645dcfb259
|
|
@ -8,7 +8,7 @@ import scala.annotation.tailrec
|
|||
sealed trait ResolutionProcess {
|
||||
def run[F[_]](
|
||||
fetch: Fetch.Metadata[F],
|
||||
maxIterations: Int = -1
|
||||
maxIterations: Int = 50
|
||||
)(implicit
|
||||
F: Monad[F]
|
||||
): F[Resolution] = {
|
||||
|
|
|
|||
Loading…
Reference in New Issue