Stop limiting WS frame size to 16kb for large number of test suites (#353)
This commit is contained in:
parent
7b4c35fc6a
commit
c295a21df0
|
@ -59,7 +59,8 @@ extension Application {
|
|||
}
|
||||
}
|
||||
|
||||
webSocket("watcher") { request, ws in
|
||||
// Don't limit the size of frame to accept large test outputs
|
||||
webSocket("watcher", maxFrameSize: .init(integerLiteral: Int(UInt32.max))) { request, ws in
|
||||
let environment = request.headers["User-Agent"].compactMap(DestinationEnvironment.init).first
|
||||
?? .other
|
||||
|
||||
|
|
Loading…
Reference in New Issue