diff options
author | Claire <claire.github-309c@sitedethib.com> | 2021-05-07 18:21:59 +0200 |
---|---|---|
committer | Claire <claire.github-309c@sitedethib.com> | 2021-05-07 18:21:59 +0200 |
commit | 50b430d9a2857edf8ab44e9b94c7bcb14ecd2117 (patch) | |
tree | 4932ca1d8e52f6ce9b8b9fbb304b6bfce4027e54 /streaming | |
parent | a346912030012dc1451249373ff7ef1a61016517 (diff) | |
parent | d8e0c8a89e1f1dd1c4ce1513deaeb3c85c6e4a42 (diff) |
Merge branch 'main' into glitch-soc/merge-upstream
- `app/views/statuses/_simple_status.html.haml`: Small markup change in glitch-soc, on a line that has been modified by upstream. Ported upstream changes.
Diffstat (limited to 'streaming')
-rw-r--r-- | streaming/index.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/streaming/index.js b/streaming/index.js index 724235712..ac8e80fb9 100644 --- a/streaming/index.js +++ b/streaming/index.js @@ -99,11 +99,11 @@ const startMaster = () => { log.warn('UNIX domain socket is now supported by using SOCKET. Please migrate from PORT hack.'); } - log.info(`Starting streaming API server master with ${numWorkers} workers`); + log.warn(`Starting streaming API server master with ${numWorkers} workers`); }; const startWorker = (workerId) => { - log.info(`Starting worker ${workerId}`); + log.warn(`Starting worker ${workerId}`); const pgConfigs = { development: { @@ -1084,16 +1084,16 @@ const startWorker = (workerId) => { } ws.isAlive = false; - ws.ping('', false, true); + ws.ping('', false); }); }, 30000); attachServerWithConfig(server, address => { - log.info(`Worker ${workerId} now listening on ${address}`); + log.warn(`Worker ${workerId} now listening on ${address}`); }); const onExit = () => { - log.info(`Worker ${workerId} exiting, bye bye`); + log.warn(`Worker ${workerId} exiting`); server.close(); process.exit(0); }; |