[Disks] bugfix

Fixed order of parameters to <DiskS3> constructor:
 - name
 - bucket
 - key
 - versionId
 - ...
This commit is contained in:
Saad Ur Rahman 2022-03-14 22:37:47 -04:00
parent 7b35c79b04
commit 40fbea49f7
No known key found for this signature in database
GPG Key ID: C6773CD21542E49C
2 changed files with 2 additions and 2 deletions

View File

@ -151,8 +151,8 @@ void logIfError(const Aws::Utils::Outcome<Result, Error> & response, Fn<String()
DiskS3::DiskS3(
String name_,
String bucket_,
String version_id_,
String s3_root_path_,
String version_id_,
DiskPtr metadata_disk_,
FileCachePtr cache_,
ContextPtr context_,

View File

@ -72,8 +72,8 @@ public:
DiskS3(
String name_,
String bucket_,
String version_id_,
String s3_root_path_,
String version_id_,
DiskPtr metadata_disk_,
FileCachePtr cache_,
ContextPtr context_,