mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
DEV: Don't use chunked encoding in development mode (#13768)
The express server and http-proxy seem to buffer quite a bit and that slows down message bus.
This commit is contained in:
@@ -86,7 +86,8 @@ export default {
|
||||
messageBus.baseUrl =
|
||||
siteSettings.long_polling_base_url.replace(/\/$/, "") + "/";
|
||||
|
||||
messageBus.enableChunkedEncoding = siteSettings.enable_chunked_encoding;
|
||||
messageBus.enableChunkedEncoding =
|
||||
isProduction() && siteSettings.enable_chunked_encoding;
|
||||
|
||||
if (messageBus.baseUrl !== "/") {
|
||||
messageBus.ajax = function (opts) {
|
||||
|
||||
Reference in New Issue
Block a user