Merge pull request #71384 from snar/memory-worker-non-linux

memory_worker shall be started on non-Linux OS too
This commit is contained in:
Antonio Andelic 2024-11-05 08:11:06 +00:00 committed by GitHub
commit a9f88fae8e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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