Skip to content

Commit

Permalink
fix distributed executables could not send any HTTP request (but not …
Browse files Browse the repository at this point in the history
…`gradle run` and `gradle test`)
  • Loading branch information
sunny-chung committed Jul 10, 2024
1 parent 211b675 commit 0bc5b62
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ allprojects {
} else if (requested.group == "io.grpc" && requested.name.startsWith("grpc-") && requested.version?.startsWith("$grpcVersion-patch") == true) {
useVersion(grpcVersion)
because("not built")
} else if (requested.group == "io.projectreactor.netty" && requested.version?.startsWith("1.1.20") == true) {
useTarget("io.github.sunny-chung:${requested.name}:${requested.version}-patch1")
} else if (requested.group == "io.projectreactor.netty") {
useTarget("io.github.sunny-chung:${requested.name}:1.1.20-patch1")
because("transport inspection")
} else if (requested.group == "io.netty" && requested.name in setOf("netty-codec", "netty-codec-http2") && requested.version == "4.1.110.Final") {
useTarget("io.github.sunny-chung:${requested.name}:${requested.version}-patch1")
Expand Down

0 comments on commit 0bc5b62

Please sign in to comment.