Skip to content

Commit

Permalink
Intentionally delaying in MavenDependenciesListCheck to see if same e…
Browse files Browse the repository at this point in the history
…rror is reproduced
  • Loading branch information
Rd4dev committed Jun 30, 2024
1 parent 9437d67 commit 3787ea9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ class MavenDependenciesListCheck(
val pathToMavenDependenciesPb = args[2]
ScriptBackgroundCoroutineDispatcher().use { scriptBgDispatcher ->
runBlocking {
delay(300000)
checkMavenDependenciesList(
pathToRoot, pathToMavenInstallJson, pathToMavenDependenciesPb, scriptBgDispatcher
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2307,7 +2307,7 @@ class RunCoverageTest {

private fun initializeCommandExecutorWithLongProcessWaitTime(): CommandExecutorImpl {
return CommandExecutorImpl(
scriptBgDispatcher, processTimeout = 100, processTimeoutUnit = TimeUnit.MINUTES
scriptBgDispatcher, processTimeout = 5, processTimeoutUnit = TimeUnit.MINUTES
)
}
}

0 comments on commit 3787ea9

Please sign in to comment.