Merge pull request #70894 from ClickHouse/kssenii-patch-13

Fix darwin build
This commit is contained in:
Raúl Marín 2024-10-21 16:35:00 +00:00 committed by GitHub
commit 6d06b6adb0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -415,7 +415,7 @@ void StorageObjectStorageQueue::threadFunc()
else
{
/// Increase the reschedule interval.
reschedule_processing_interval_ms = std::min(polling_max_timeout_ms, reschedule_processing_interval_ms + polling_backoff_ms);
reschedule_processing_interval_ms = std::min<size_t>(polling_max_timeout_ms, reschedule_processing_interval_ms + polling_backoff_ms);
}
LOG_DEBUG(log, "Stopped streaming to {} attached views", dependencies_count);