We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
TimeSpan.FromMilliseconds
net10.0
1 parent 85a9d8c commit af87160Copy full SHA for af87160
2 files changed
RELEASE_NOTES.md
@@ -235,4 +235,5 @@
235
### 3.1.0 - Unreleased
236
237
* Added `TimeOnly` GraphQL type
238
-* Excluded `GraphQLWebSocketMiddleware` from exception stack trace if request not a Web Socket
+* Excluded `GraphQLWebSocketMiddleware` from exception stack trace if request not a Web Socket
239
+* Changed `GraphQLOptionsDefaults.WebSocketConnectionInitTimeoutInMs` const type to `double`
src/FSharp.Data.GraphQL.Server.AspNetCore/GraphQLOptions.fs
@@ -13,7 +13,7 @@ module GraphQLOptionsDefaults =
13
14
let [<Literal>] ReadBufferSize = 4096
15
let [<Literal>] WebSocketEndpoint = "/ws"
16
- let [<Literal>] WebSocketConnectionInitTimeoutInMs = 3000
+ let [<Literal>] WebSocketConnectionInitTimeoutInMs = 3000.0
17
18
module GraphQLOptions =
19
0 commit comments