PMCORE-3491

This commit is contained in:
Paula Quispe
2021-11-03 11:10:20 -04:00
parent 402e6df75a
commit 61ac04bc0e
2 changed files with 9 additions and 2 deletions

View File

@@ -84,7 +84,8 @@ class System
'report_table_double_number' => 4,
'ext_ajax_timeout' => 600000,
'disable_task_manager_routing_async' => '0',
'on_one_server_enable' => 0
'on_one_server_enable' => 0,
'at_risk_delegation_max_time' => '0.2',
];
/**
@@ -1246,6 +1247,11 @@ class System
$config['disable_task_manager_routing_async'] = self::$defaultConfig['disable_task_manager_routing_async'];
}
$value = $config['at_risk_delegation_max_time'];
if ($value > 0 && $value < 1) {
$config['at_risk_delegation_max_time'] = self::$defaultConfig['at_risk_delegation_max_time'];
}
return $config;
}