update versions
This commit is contained in:
core
api
ktor
client
common
server
src
main
kotlin
com
insanusmokrassar
postssystem
core
ktor
gradle/wrapper
ktor
client
common
server
tests
src
test
kotlin
com
insanusmokrassar
postssystem
ktor
tests
markups
publishing
utils
common
build.gradle
src
commonMain
kotlin
com
insanusmokrassar
postssystem
utils
jsMain
kotlin
com
insanusmokrassar
postssystem
utils
common
jvmMain
kotlin
com
insanusmokrassar
postssystem
utils
common
repos
common
@ -28,7 +28,7 @@ class WebsocketsTest {
|
||||
install(WebSockets)
|
||||
routing {
|
||||
includeWebsocketHandling(suburl, dataFlow) {
|
||||
standardKtorSerialFormat.dump(Int.serializer(), it)
|
||||
standardKtorSerialFormat.encodeToByteArray(Int.serializer(), it)
|
||||
}
|
||||
}
|
||||
}.also {
|
||||
@ -44,7 +44,7 @@ class WebsocketsTest {
|
||||
"$serverUrl/$suburl",
|
||||
{ false } // always skip reconnection
|
||||
) {
|
||||
standardKtorSerialFormat.load(Int.serializer(), it)
|
||||
standardKtorSerialFormat.decodeFromByteArray(Int.serializer(), it)
|
||||
}
|
||||
|
||||
var currentlyCheckingData: Int? = null
|
||||
|
Reference in New Issue
Block a user