Missed initialize in ReadBufferFromS3

This commit is contained in:
Pavel Kovalenko 2021-06-12 14:35:34 +03:00
parent 60c094e785
commit 0c82d45dea

View File

@ -47,6 +47,8 @@ bool ReadBufferFromS3::nextImpl()
bool next_result = false;
auto sleep_time_with_backoff_milliseconds = std::chrono::milliseconds(100);
impl = initialize();
for (size_t attempt = 0; attempt < max_single_read_retries; ++attempt)
{
try