mirror of https://github.com/sbt/sbt.git
Merge pull request #8129 from eed3si9n/wip/post
fix: Fix Central Portal status checking
This commit is contained in:
commit
ddff8eb908
|
|
@ -11,7 +11,7 @@ import scala.util.Try
|
|||
// ThisBuild settings take lower precedence,
|
||||
// but can be shared across the multi projects.
|
||||
ThisBuild / version := {
|
||||
val v = "1.10.11-SNAPSHOT"
|
||||
val v = "1.11.0-SNAPSHOT"
|
||||
nightlyVersion.getOrElse(v)
|
||||
}
|
||||
ThisBuild / version2_13 := "2.0.0-SNAPSHOT"
|
||||
|
|
|
|||
|
|
@ -103,7 +103,7 @@ class SonaClient(reqTransform: Request => Request) extends AutoCloseable {
|
|||
val req = Gigahorse
|
||||
.url(s"${baseUrl}/publisher/status")
|
||||
.addQueryString("id" -> deploymentId)
|
||||
.get
|
||||
.post("", StandardCharsets.UTF_8)
|
||||
http.run(reqTransform(req), SonaClient.asPublisherStatus)
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue