big queues

This commit is contained in:
Evgeny Poberezkin
2022-11-02 20:40:57 +00:00
parent ecae11a2a1
commit 3205bd7250
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -174,7 +174,7 @@ data APNSMockServer = APNSMockServer
apnsMockServerConfig :: HTTP2ServerConfig
apnsMockServerConfig =
HTTP2ServerConfig
{ qSize = 1,
{ qSize = 10,
http2Port = apnsTestPort,
serverSupported = http2TLSParams,
caCertificateFile = "tests/fixtures/ca.crt",
+2 -2
View File
@@ -71,8 +71,8 @@ cfg :: ServerConfig
cfg =
ServerConfig
{ transports = undefined,
tbqSize = 1,
serverTbqSize = 1,
tbqSize = 10,
serverTbqSize = 10,
msgQueueQuota = 4,
queueIdBytes = 24,
msgIdBytes = 24,