From 79a314d5fd5f8b6a6b3a69371d543496f458b78a Mon Sep 17 00:00:00 2001 From: Jakob Ackermann Date: Wed, 1 May 2019 00:56:32 +0200 Subject: [PATCH] [misc] disable the flash transport We do not use flash on the website and the policy file provider is not compatible with node7+. Signed-off-by: Jakob Ackermann --- services/real-time/app.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/real-time/app.coffee b/services/real-time/app.coffee index 6161e63a46..5c10bdb36f 100644 --- a/services/real-time/app.coffee +++ b/services/real-time/app.coffee @@ -45,7 +45,7 @@ io.configure -> # gzip uses a Node 0.8.x method of calling the gzip program which # doesn't work with 0.6.x #io.enable('browser client gzip') - io.set('transports', ['websocket', 'flashsocket', 'htmlfile', 'xhr-polling', 'jsonp-polling']) + io.set('transports', ['websocket', 'htmlfile', 'xhr-polling', 'jsonp-polling']) io.set('log level', 1) app.get "/", (req, res, next) ->