We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d603088 commit 7aa80d0Copy full SHA for 7aa80d0
cloud/examples/cloud_dump.cc
@@ -42,8 +42,13 @@ int main() {
42
char* user = getenv("USER");
43
kBucketSuffix.append(user);
44
45
+ // "rockset." is the default bucket prefix
46
+ const std::string bucketPrefix = "rockset.";
47
+ cloud_env_options.src_bucket.SetBucketName(kBucketSuffix,bucketPrefix);
48
+ cloud_env_options.dest_bucket.SetBucketName(kBucketSuffix,bucketPrefix);
49
+
50
// create a bucket name for debugging purposes
- const std::string bucketName = "rockset." + kBucketSuffix;
51
+ const std::string bucketName = bucketPrefix + kBucketSuffix;
52
53
// Create a new AWS cloud env Status
54
CloudEnv* cenv;
0 commit comments