Browse Source
Fix "cb is not a function" error in streaming API server (#16134)
Third argument of `ping` is the callback
Regression from #15932
closed-social-v3
Eugen Rochko
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
streaming/index.js
|
|
@ -1062,7 +1062,7 @@ const startWorker = (workerId) => { |
|
|
|
} |
|
|
|
|
|
|
|
ws.isAlive = false; |
|
|
|
ws.ping('', false, true); |
|
|
|
ws.ping('', false); |
|
|
|
}); |
|
|
|
}, 30000); |
|
|
|
|
|
|
|