Skip to content

Commit

Permalink
Update Vert.x to 4.4.6 (#119)
Browse files Browse the repository at this point in the history
* Update Vert.x to 4.4.6
* Exclude guava-parent in license check
* Fix HttpEndpointTest
  • Loading branch information
slinkydeveloper authored Oct 18, 2023
1 parent 8223cd6 commit 3a50f8b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ allprojects {
excludes =
arrayOf(
"io.vertx:vertx-stack-depchain", // Vertx bom file
"com.google.guava:guava-parent", // Guava bom
"org.jetbrains.kotlinx:kotlinx-coroutines-core", // Kotlinx coroutines bom file
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,10 @@ internal class RestateHttpEndpointTest {
val decoder = MessageDecoder()
response.handler {
decoder.offer(it)
decoder.poll()?.let { inputChannel.handle(it.message()) }
while (true) {
val m = decoder.poll() ?: break
inputChannel.handle(m.message())
}
}
response.resume()

Expand Down
4 changes: 2 additions & 2 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ dependencyResolutionManagement {
library("javax-annotation-api", "org.apache.tomcat", "annotations-api").version("6.0.53")
}
create("vertxLibs") {
library("vertx-bom", "io.vertx:vertx-stack-depchain:4.4.5")
library("vertx-bom", "io.vertx:vertx-stack-depchain:4.4.6")
library("vertx-core", "io.vertx", "vertx-core").withoutVersion()
library("vertx-grpc-context-storage", "io.vertx", "vertx-grpc-context-storage")
.version("4.4.5")
.withoutVersion()
library("vertx-kotlin-coroutines", "io.vertx", "vertx-lang-kotlin-coroutines")
.withoutVersion()
library("vertx-junit5", "io.vertx", "vertx-junit5").withoutVersion()
Expand Down

0 comments on commit 3a50f8b

Please sign in to comment.