mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-18 12:22:12 +00:00
Merge pull request #66017 from ClickHouse/backport/24.6/65986
Backport #65986 to 24.6: Fix race in s3queue
This commit is contained in:
commit
4e6cf4c75a
@ -111,10 +111,12 @@ void ObjectStorageQueueSource::FileIterator::returnForRetry(Source::ObjectInfoPt
|
||||
if (metadata->useBucketsForProcessing())
|
||||
{
|
||||
const auto bucket = metadata->getBucketForPath(object_info->relative_path);
|
||||
std::lock_guard lock(mutex);
|
||||
listed_keys_cache[bucket].keys.emplace_front(object_info);
|
||||
}
|
||||
else
|
||||
{
|
||||
std::lock_guard lock(mutex);
|
||||
objects_to_retry.push_back(object_info);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user