forked from TrueCloudLab/neoneo-go
rpc/server: silence deadcode warning
This commit is contained in:
parent
73ecbbb7c6
commit
8322607fd2
1 changed files with 6 additions and 1 deletions
|
@ -16,6 +16,8 @@ import (
|
||||||
"go.uber.org/atomic"
|
"go.uber.org/atomic"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
const testOverflow = false
|
||||||
|
|
||||||
func wsReader(t *testing.T, ws *websocket.Conn, msgCh chan<- []byte, isFinished *atomic.Bool) {
|
func wsReader(t *testing.T, ws *websocket.Conn, msgCh chan<- []byte, isFinished *atomic.Bool) {
|
||||||
for {
|
for {
|
||||||
ws.SetReadDeadline(time.Now().Add(time.Second))
|
ws.SetReadDeadline(time.Now().Add(time.Second))
|
||||||
|
@ -428,7 +430,10 @@ func TestWSClientsLimit(t *testing.T) {
|
||||||
// that's going to happen because of network-level buffering, typical
|
// that's going to happen because of network-level buffering, typical
|
||||||
// number seen in tests is around ~3500 events, but it's not reliable enough,
|
// number seen in tests is around ~3500 events, but it's not reliable enough,
|
||||||
// thus this test is disabled.
|
// thus this test is disabled.
|
||||||
func testSubscriptionOverflow(t *testing.T) {
|
func TestSubscriptionOverflow(t *testing.T) {
|
||||||
|
if !testOverflow {
|
||||||
|
return
|
||||||
|
}
|
||||||
const blockCnt = notificationBufSize * 5
|
const blockCnt = notificationBufSize * 5
|
||||||
var receivedMiss bool
|
var receivedMiss bool
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue