Skip to content

Commit

Permalink
Release 3.0.2 (#4522)
Browse files Browse the repository at this point in the history
  • Loading branch information
Stexxe authored Dec 2, 2024
1 parent f4bf505 commit 3d1a2d3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
kotlin.code.style=official

# config
version=3.0.2-SNAPSHOT
version=3.0.2

## Performance

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -324,6 +324,8 @@ class HttpTimeoutTest : ClientLoader() {
}

// Js can't configure test timeout in browser
// Fix https://youtrack.jetbrains.com/issue/KTOR-7885
@Ignore
@Test
fun testRedirect() = clientTests(listOf("js"), retries = 5) {
config {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,9 @@ import io.ktor.server.util.*
import io.ktor.utils.io.*
import io.ktor.utils.io.core.*
import kotlinx.coroutines.*
import kotlinx.io.*
import kotlin.coroutines.*
import kotlinx.io.readByteArray
import kotlin.coroutines.AbstractCoroutineContextElement
import kotlin.coroutines.CoroutineContext
import kotlin.test.*
import kotlin.time.Duration.Companion.minutes

Expand Down Expand Up @@ -317,6 +318,8 @@ abstract class HttpServerCommonTestSuite<TEngine : ApplicationEngine, TConfigura
}

@Test
// Fix [KTOR-7883](https://youtrack.jetbrains.com/issue/KTOR-7883/Fix-flaky-testStatusCodeViaResponseObject)
@Ignore
fun testStatusCodeViaResponseObject() = runTest {
var completed = false
createAndStartServer {
Expand Down

0 comments on commit 3d1a2d3

Please sign in to comment.