aboutsummaryrefslogtreecommitdiffhomepage
path: root/server.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-04-18 16:04:49 +0200
committerChocobozzz <me@florianbigard.com>2018-04-18 16:04:49 +0200
commitf55e5a7bf81c2c27db1514273e3366511aabf4ae (patch)
tree7374d57557b770fbbea8b9410ec6f2e133a086c0 /server.ts
parent5350fd8e5b2b2d017b16d97828893a8a4a40bd89 (diff)
downloadPeerTube-f55e5a7bf81c2c27db1514273e3366511aabf4ae.tar.gz
PeerTube-f55e5a7bf81c2c27db1514273e3366511aabf4ae.tar.zst
PeerTube-f55e5a7bf81c2c27db1514273e3366511aabf4ae.zip
Process broadcast requests in parallel
Diffstat (limited to 'server.ts')
-rw-r--r--server.ts7
1 files changed, 4 insertions, 3 deletions
diff --git a/server.ts b/server.ts
index 5323bae2b..8024655a3 100644
--- a/server.ts
+++ b/server.ts
@@ -215,7 +215,8 @@ async function startApplication () {
215 Redis.Instance.init() 215 Redis.Instance.init()
216 216
217 // Make server listening 217 // Make server listening
218 server.listen(port, hostname) 218 server.listen(port, hostname, () => {
219 logger.info('Server listening on %s:%d', hostname, port) 219 logger.info('Server listening on %s:%d', hostname, port)
220 logger.info('Web server: %s', CONFIG.WEBSERVER.URL) 220 logger.info('Web server: %s', CONFIG.WEBSERVER.URL)
221 })
221} 222}