Fix "cb is not a function" error in streaming API server (#16134)

Third argument of `ping` is the callback

Regression from #15932
lolsob-rspec
Eugen Rochko 2021-05-02 14:30:26 +02:00 committed by GitHub
parent f22c178647
commit 759cca2d31
1 changed files with 1 additions and 1 deletions

View File

@ -1062,7 +1062,7 @@ const startWorker = (workerId) => {
} }
ws.isAlive = false; ws.isAlive = false;
ws.ping('', false, true); ws.ping('', false);
}); });
}, 30000); }, 30000);