alsoInvalidateSync, alsoInvalidateSyncLogging, alsoDoInvalidate -> alsoInvalidateAsync

This commit is contained in:
2025-03-14 15:01:22 +06:00
parent 6fb20fb973
commit 178518db5e
6 changed files with 61 additions and 7 deletions

View File

@@ -73,7 +73,7 @@ class KtorCRUDRepoTests : CommonCRUDRepoTests() {
}
val server = io.ktor.server.engine.embeddedServer(
CIO,
34567,
34568,
"127.0.0.1"
) {
install(ContentNegotiation) {
@@ -100,7 +100,7 @@ class KtorCRUDRepoTests : CommonCRUDRepoTests() {
}
}
val crudClient = KtorCRUDRepoClient<ComplexData, Int, SimpleData>(
"http://127.0.0.1:34567",
"http://127.0.0.1:34568",
client,
ContentType.Application.Json
) {

View File

@@ -63,7 +63,7 @@ class KtorKeyValueRepoTests : CommonKeyValueRepoTests() {
val repo = MapKeyValueRepo<Int, ComplexData>(map)
val server = io.ktor.server.engine.embeddedServer(
CIO,
34567,
34569,
"127.0.0.1"
) {
install(ContentNegotiation) {
@@ -91,7 +91,7 @@ class KtorKeyValueRepoTests : CommonKeyValueRepoTests() {
}
}
val crudClient = KtorKeyValueRepoClient<Int, ComplexData>(
"http://127.0.0.1:34567",
"http://127.0.0.1:34569",
client,
ContentType.Application.Json,
Int.serializer(),