Change default maxHistory to 10000

This commit is contained in:
Pavel Djundik 2017-01-29 11:18:33 +02:00 committed by GitHub
parent 87b9c50aaa
commit a8b93edd86

View File

@ -160,11 +160,11 @@ module.exports = {
// //
// Defines the maximum number of history lines that will be kept in // Defines the maximum number of history lines that will be kept in
// memory per channel/query, in order to reduce the memory usage of // memory per channel/query, in order to reduce the memory usage of
// the server. Negative means unlimited. // the server. Setting this to -1 will keep unlimited amount.
// //
// @type integer // @type integer
// @default -1 // @default 10000
maxHistory: -1, maxHistory: 10000,
// //
// Default values for the 'Connect' form. // Default values for the 'Connect' form.