From 24322d3b52ec3dab8c3335bdf82c6f82d45fff56 Mon Sep 17 00:00:00 2001 From: Calvin Montgomery Date: Tue, 26 Dec 2017 11:00:18 -0800 Subject: [PATCH] Remove config option that is no longer used --- config.template.yaml | 5 ----- src/config.js | 3 +-- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/config.template.yaml b/config.template.yaml index a91d0909..9df1547b 100644 --- a/config.template.yaml +++ b/config.template.yaml @@ -107,11 +107,6 @@ io: default-port: 1337 # limit the number of concurrent socket connections per IP address ip-connection-limit: 10 - # Whether or not to use zlib to compress each socket message (this option is - # passed through to socket.io/engine.io). - # Note that while this may save a little bandwidth, it also consumes a lot - # more CPU and will bottleneck pretty quickly under heavy load. - per-message-deflate: false # YouTube v3 API key # See https://developers.google.com/youtube/registering_an_application diff --git a/src/config.js b/src/config.js index 38405d96..d84401c0 100644 --- a/src/config.js +++ b/src/config.js @@ -60,8 +60,7 @@ var defaults = { io: { domain: "http://localhost", "default-port": 1337, - "ip-connection-limit": 10, - "per-message-deflate": false + "ip-connection-limit": 10 }, "youtube-v3-key": "", "channel-blacklist": [],