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 0549f0a commit 8ccce3cCopy full SHA for 8ccce3c
server/src/s3.rs
@@ -297,7 +297,7 @@ impl S3 {
297
.client
298
.list_objects_v2()
299
.bucket(&S3_CONFIG.s3_bucket_name)
300
- .delimiter("/.schema")
+ .delimiter('/')
301
.send()
302
.await?;
303
@@ -307,7 +307,7 @@ impl S3 {
307
let logstreams: Vec<_> = common_prefixes
308
.iter()
309
.filter_map(CommonPrefix::prefix)
310
- .filter_map(|name| name.strip_suffix("/.schema"))
+ .filter_map(|name| name.strip_suffix('/'))
311
.map(String::from)
312
.map(|name| LogStream { name })
313
.collect();
0 commit comments