kio: lower the idle slaves life-time to 1 minute

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
Ivailo Monev 2023-01-01 06:15:36 +02:00
parent ea98009a53
commit 550ed43ba7

View file

@ -41,8 +41,8 @@
#include <assert.h>
// Slaves may be idle for a certain time (3 minutes) before they are killed.
static const int s_idleSlaveLifetime = 3 * 60;
// Slaves may be idle for a certain time (1 minute) before they are killed.
static const int s_idleSlaveLifetime = 1 * 60;
using namespace KIO;