new: [performance] disable the checking of expired sessions for automatic logouts

pull/3473/head
Andras Iklody 2018-08-18 09:09:28 +02:00 committed by GitHub
parent 40f4ea4b75
commit 3725edf0d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 0 deletions

View File

@ -165,6 +165,15 @@ class Server extends AppModel
'type' => 'boolean',
'null' => true
),
'disable_auto_logout' => array(
'level' => 1,
'description' => __('In some cases, a heavily used MISP instance can generate unwanted blackhole errors due to a high number of requests hitting the server. Disable the auto logout functionality to ease the burden on the system.'),
'value' => false,
'errorMessage' => '',
'test' => 'testBool',
'type' => 'boolean',
'null' => true
),
'ssdeep_correlation_threshold' => array(
'level' => 1,
'description' => __('Set the ssdeep score at which to consider two ssdeep hashes as correlating [1-100]'),