Agniva De Sarker
7ce68e89d7
MM-22044: Fix panic on web_conn send hello ( #13799 )
...
* MM-22044: Fix panic on web_conn send hello
(*Hub).Start is the central place for sending all web connection
related traffic. However, there was this one call to (*WebConn).Hello
which tried to send a message to a webconn separately.
This was a rare case, but it did occur under stress conditions generated
from a load test.
When the websocket send SEND_QUEUE_SIZE would get filled up and we would
attempt to make a broadcast, the non-blocking send would close the Send
channel of the web connection. During that time, if a web connection
would try to perform a broadcast, it would try to send to a closed channel
and cause a panic.
The solution is to bring back the sending of hello into the same goroutine
inside (*Hub).Start so that all state is centralised and we avoid
sending to a closed channel by sending the hello message inside the registering
code itself.
* Adding non-blocking send
* Simplify things
* Remove test
* Bring sendHello back
* Improve code further
Co-authored-by: mattermod <mattermod@users.noreply.github.com >
2020-03-30 18:12:40 +05:30
..
2020-03-13 15:33:18 +01:00
2020-02-13 13:26:58 +01:00
2020-03-17 16:12:56 -04:00
2020-03-27 14:52:57 +01:00
2020-03-23 13:44:20 -04:00
2020-03-27 14:52:57 +01:00
2020-03-17 16:12:56 -04:00
2020-03-04 14:18:03 +01:00
2020-03-23 13:44:20 -04:00
2020-02-13 13:26:58 +01:00
2020-02-13 13:26:58 +01:00
2020-03-02 15:57:29 -06:00
2020-02-13 13:26:58 +01:00
2020-02-10 19:31:41 +01:00
2020-03-13 21:12:20 +01:00
2020-03-23 13:44:20 -04:00
2020-02-13 13:26:58 +01:00
2020-03-25 21:43:25 -07:00
2020-02-13 13:26:58 +01:00
2020-02-13 13:26:58 +01:00
2020-02-13 13:26:58 +01:00
2020-02-13 13:26:58 +01:00
2020-02-13 13:26:58 +01:00
2020-02-13 13:26:58 +01:00
2020-02-13 13:26:58 +01:00
2020-02-13 13:26:58 +01:00
2020-02-13 13:26:58 +01:00
2020-03-23 14:38:21 -03:00
2020-03-23 14:38:21 -03:00
2020-02-13 13:26:58 +01:00
2020-03-13 15:33:18 +01:00
2020-03-13 15:33:18 +01:00
2020-02-13 13:26:58 +01:00
2020-02-15 17:46:26 -05:00
2020-03-17 12:01:59 -04:00
2020-02-13 13:26:58 +01:00
2020-03-02 08:13:39 -08:00
2020-03-03 22:43:48 +01:00
2020-03-03 22:43:48 +01:00
2020-02-13 13:26:58 +01:00
2020-03-02 08:13:39 -08:00
2020-03-27 14:52:57 +01:00
2020-03-23 09:21:05 -04:00
2020-03-23 09:21:05 -04:00
2020-03-03 22:43:48 +01:00
2020-02-13 13:26:58 +01:00
2020-02-13 13:26:58 +01:00
2020-03-27 14:52:57 +01:00
2020-02-13 13:26:58 +01:00
2020-03-27 13:29:17 +01:00
2020-03-27 13:29:17 +01:00
2020-03-27 13:29:17 +01:00
2020-03-23 09:21:05 -04:00
2020-03-23 09:21:05 -04:00
2020-03-13 08:44:39 +05:30
2020-03-11 14:29:32 +01:00
2020-03-13 21:12:20 +01:00
2020-03-26 14:27:55 +01:00
2020-02-13 13:26:58 +01:00
2020-02-13 13:26:58 +01:00
2020-02-13 13:26:58 +01:00
2020-03-04 00:52:59 +08:00
2020-02-13 13:26:58 +01:00
2020-02-13 13:26:58 +01:00
2020-03-02 08:13:39 -08:00
2020-03-03 22:43:48 +01:00
2020-03-28 09:33:38 +05:30
2020-03-28 09:33:38 +05:30
2020-03-24 13:43:25 -07:00
2020-03-24 13:43:25 -07:00
2020-02-13 13:26:58 +01:00
2020-02-13 13:26:58 +01:00
2020-02-13 13:26:58 +01:00
2020-03-27 14:52:57 +01:00
2020-03-13 15:33:18 +01:00
2020-03-23 13:44:20 -04:00
2020-02-13 13:26:58 +01:00
2020-03-23 13:44:20 -04:00
2020-03-25 10:24:42 +01:00
2020-03-25 10:24:42 +01:00
2020-02-13 17:53:23 +01:00
2020-03-11 11:50:12 +01:00
2020-02-13 13:26:58 +01:00
2020-03-13 21:12:20 +01:00
2020-02-13 13:26:58 +01:00
2020-02-14 15:47:43 -05:00
2020-02-13 13:26:58 +01:00
2020-03-02 17:10:40 +01:00
2020-02-13 17:53:23 +01:00
2020-03-02 08:13:39 -08:00
2020-02-13 13:26:58 +01:00
2020-02-13 13:26:58 +01:00
2020-03-11 11:41:11 +04:00
2020-03-17 21:26:59 +05:30
2020-03-17 10:20:29 +05:30
2020-03-13 21:12:20 +01:00
2020-03-23 13:44:20 -04:00
2020-03-13 21:12:20 +01:00
2020-02-13 13:26:58 +01:00
2020-03-03 22:43:48 +01:00
2020-03-23 13:44:20 -04:00
2020-03-23 13:44:20 -04:00
2020-02-13 13:26:58 +01:00
2020-03-23 13:44:20 -04:00
2020-03-13 15:33:18 +01:00
2020-03-27 14:52:57 +01:00
2020-03-28 09:33:38 +05:30
2020-02-13 13:26:58 +01:00
2020-03-03 22:43:48 +01:00
2020-02-13 13:26:58 +01:00
2020-03-16 21:52:06 +05:30
2020-03-16 21:52:06 +05:30
2020-02-13 13:26:58 +01:00
2020-02-13 13:26:58 +01:00
2020-03-02 17:10:40 +01:00
2020-03-04 14:18:03 +01:00
2020-03-13 15:33:18 +01:00
2020-02-13 13:26:58 +01:00
2020-03-19 11:18:17 +01:00
2020-03-19 11:18:17 +01:00
2020-02-13 13:26:58 +01:00
2020-03-17 17:23:59 +03:00
2020-03-17 17:23:59 +03:00
2020-02-11 03:41:55 -05:00
2020-03-30 18:12:40 +05:30
2020-03-02 19:37:57 +01:00
2020-03-30 18:12:40 +05:30
2020-03-13 21:12:20 +01:00
2020-03-13 21:12:20 +01:00
2020-02-13 13:26:58 +01:00