From 550ed43ba75294fec79bb9fa585ad0ca795484d3 Mon Sep 17 00:00:00 2001 From: Ivailo Monev Date: Sun, 1 Jan 2023 06:15:36 +0200 Subject: [PATCH] kio: lower the idle slaves life-time to 1 minute Signed-off-by: Ivailo Monev --- kio/kio/scheduler.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kio/kio/scheduler.cpp b/kio/kio/scheduler.cpp index 53848ad0..2ac53d69 100644 --- a/kio/kio/scheduler.cpp +++ b/kio/kio/scheduler.cpp @@ -41,8 +41,8 @@ #include -// 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;