[Disks] bugfix 🤦‍♂️

Correcting order of parameters for <ReadBufferFromS3> in <readSchemaVersion>.
This commit is contained in:
Saad Ur Rahman 2022-03-14 22:42:09 -04:00
parent 40fbea49f7
commit 7bdbaf28d8
No known key found for this signature in database
GPG Key ID: C6773CD21542E49C

View File

@ -404,8 +404,8 @@ int DiskS3::readSchemaVersion(const String & source_bucket, const String & sourc
ReadBufferFromS3 buffer(
settings->client,
source_bucket,
"" /* version_id empty and to be extract */,
source_path + SCHEMA_VERSION_OBJECT,
"" /* version_id empty */,
settings->s3_max_single_read_retries,
context->getReadSettings());