Replies: 1 comment
-
Btw. I noticed at some points that there are method parameters that get reassigned in the body without being read before... Is this intentional? signalr_core/lib/src/hub_connection.dart Line 934 in 8c96e88 signalr_core/lib/src/hub_connection.dart Line 996 in 8c96e88 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
signalr_core/lib/src/hub_connection.dart
Line 340 in 8c96e88
Good day!
I just ran into some issues with long polling transport. Although the server sends "Pong"-Messages to reply to the client "Ping"-Messages every few seconds, the
HubConnection
times out after 30s.How can I prevent these timeouts? The server is running fine like I mentioned.
I was looking into the code that handles the timeout and I noticed for example that the check
if ((_connection!.features != null) || (_connection!.features.inherentKeepAlive == false)) { ... }
probably should be_connection!.features == null
, shouldn't it?Beta Was this translation helpful? Give feedback.
All reactions