diff options
Diffstat (limited to 'server/initializers/constants.js')
-rw-r--r-- | server/initializers/constants.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server/initializers/constants.js b/server/initializers/constants.js index 40e1c5381..3ddf87454 100644 --- a/server/initializers/constants.js +++ b/server/initializers/constants.js | |||
@@ -152,7 +152,7 @@ const REQUEST_ENDPOINTS = { | |||
152 | 152 | ||
153 | const REMOTE_SCHEME = { | 153 | const REMOTE_SCHEME = { |
154 | HTTP: 'https', | 154 | HTTP: 'https', |
155 | WS: 'WS' | 155 | WS: 'wss' |
156 | } | 156 | } |
157 | 157 | ||
158 | // Password encryption | 158 | // Password encryption |
@@ -220,6 +220,7 @@ module.exports = { | |||
220 | 220 | ||
221 | // --------------------------------------------------------------------------- | 221 | // --------------------------------------------------------------------------- |
222 | 222 | ||
223 | // This method exists in utils module but we want to let the constants module independent | ||
223 | function isTestInstance () { | 224 | function isTestInstance () { |
224 | return (process.env.NODE_ENV === 'test') | 225 | return (process.env.NODE_ENV === 'test') |
225 | } | 226 | } |