Fixed background pool logger name.

This commit is contained in:
Vladimir Chebotarev 2019-11-26 13:41:52 +03:00
parent 37bc15779d
commit e3f299e3c4

View File

@ -1487,7 +1487,7 @@ BackgroundProcessingPool & Context::getBackgroundPool()
{
auto lock = getLock();
if (!shared->background_pool)
shared->background_pool.emplace(settings.background_pool_size, "BackgrProcPool");
shared->background_pool.emplace(settings.background_pool_size);
return *shared->background_pool;
}