Merge pull request #71451 from ClickHouse/backport/24.10/71384

Backport #71384 to 24.10: memory_worker shall be started on non-Linux OS too
This commit is contained in:
robot-ch-test-poll2 2024-11-05 18:15:18 +04:00 committed by GitHub
commit 3ffd2ba35f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1351,9 +1351,11 @@ try
}
FailPointInjection::enableFromGlobalConfig(config());
#endif
memory_worker.start();
#if defined(OS_LINUX)
int default_oom_score = 0;
#if !defined(NDEBUG)