Skip to content

Commit

Permalink
bump sonatype timeouts to 10 minutes
Browse files Browse the repository at this point in the history
  • Loading branch information
lihaoyi committed Aug 22, 2024
1 parent 92d3a27 commit b4c9386
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scalalib/src/mill/scalalib/PublishModule.scala
Original file line number Diff line number Diff line change
Expand Up @@ -313,9 +313,9 @@ object PublishModule extends ExternalModule {
release: Boolean = false,
sonatypeUri: String = "https://oss.sonatype.org/service/local",
sonatypeSnapshotUri: String = "https://oss.sonatype.org/content/repositories/snapshots",
readTimeout: Int = 60000,
connectTimeout: Int = 5000,
awaitTimeout: Int = 120 * 1000,
readTimeout: Int = 10 * 60 * 1000,
connectTimeout: Int = 10 * 60 * 1000,
awaitTimeout: Int = 10 * 60 * 1000,
stagingRelease: Boolean = true
): Command[Unit] = T.command {
val x: Seq[(Seq[(os.Path, String)], Artifact)] = T.sequence(publishArtifacts.value)().map {
Expand Down

0 comments on commit b4c9386

Please sign in to comment.