Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cloud/examples/clone_example.cc
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Status CloneDB(const std::string& clone_name, const std::string& src_bucket,

// Create new AWS env
CloudFileSystem* cfs;
Status st = CloudFileSystem::NewAwsFileSystem(
Status st = CloudFileSystemEnv::NewAwsFileSystem(
FileSystem::Default(), src_bucket, src_object_path, kRegion, dest_bucket,
dest_object_path, kRegion, cloud_fs_options, nullptr, &cfs);
if (!st.ok()) {
Expand Down Expand Up @@ -108,7 +108,7 @@ int main() {

// Create a new AWS cloud env Status
CloudFileSystem* cfs;
Status s = CloudFileSystem::NewAwsFileSystem(
Status s = CloudFileSystemEnv::NewAwsFileSystem(
FileSystem::Default(), kBucketSuffix, kDBPath, kRegion, kBucketSuffix,
kDBPath, kRegion, cloud_fs_options, nullptr, &cfs);
if (!s.ok()) {
Expand Down
2 changes: 1 addition & 1 deletion cloud/examples/cloud_dump.cc
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ int main() {

// Create a new AWS cloud env Status
CloudFileSystem* cfs;
Status s = CloudFileSystem::NewAwsFileSystem(
Status s = CloudFileSystemEnv::NewAwsFileSystem(
FileSystem::Default(), kBucketSuffix, kDBPath, kRegion, kBucketSuffix,
kDBPath, kRegion, cloud_fs_options, nullptr, &cfs);
if (!s.ok()) {
Expand Down
2 changes: 1 addition & 1 deletion cloud/examples/cloud_durable_example.cc
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ int main() {

// Create a new AWS cloud env Status
CloudFileSystem* cfs;
Status s = CloudFileSystem::NewAwsFileSystem(
Status s = CloudFileSystemEnv::NewAwsFileSystem(
FileSystem::Default(), kBucketSuffix, kDBPath, kRegion, kBucketSuffix,
kDBPath, kRegion, cloud_fs_options, nullptr, &cfs);
if (!s.ok()) {
Expand Down