aboutsummaryrefslogtreecommitdiff
path: root/src/zenserver/zenserver.cpp
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2025-10-08 21:02:35 +0200
committerGitHub Enterprise <[email protected]>2025-10-08 21:02:35 +0200
commita21f5ee99e75deaa245fafbfc18a43771f16c2a3 (patch)
tree63e5f399d8fc87a416397ca717338fe27bed5f18 /src/zenserver/zenserver.cpp
parent5.7.6 (diff)
downloadzen-a21f5ee99e75deaa245fafbfc18a43771f16c2a3.tar.xz
zen-a21f5ee99e75deaa245fafbfc18a43771f16c2a3.zip
shorten thread pool names for Linux which has a limit of 15 characters (#563)
without this change we just get a whole bunch of threads named "main" or "zenserver" depending on timing
Diffstat (limited to 'src/zenserver/zenserver.cpp')
-rw-r--r--src/zenserver/zenserver.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zenserver/zenserver.cpp b/src/zenserver/zenserver.cpp
index 29581b192..cab234165 100644
--- a/src/zenserver/zenserver.cpp
+++ b/src/zenserver/zenserver.cpp
@@ -177,7 +177,7 @@ ZenServer::Initialize(const ZenServerOptions& ServerOptions, ZenServerState::Zen
InitializeState(ServerOptions);
- m_JobQueue = MakeJobQueue(8, "backgroundjobs");
+ m_JobQueue = MakeJobQueue(8, "bgjobs");
m_HealthService.SetHealthInfo({.DataRoot = m_DataRoot,
.AbsLogPath = ServerOptions.AbsLogFile,