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.
2 parents a6f0841 + 3a5288c commit e3a8a94Copy full SHA for e3a8a94
src/s3/mod.rs
@@ -382,7 +382,7 @@ pub(crate) enum S3Error {
382
ListObjects {
383
bucket: CompactString,
384
prefix: String,
385
- source: ListObjectsError,
+ source: Box<ListObjectsError>,
386
},
387
#[error("invalid object found in S3 bucket {bucket:?} under prefix {prefix:?}")]
388
BadObject {
src/s3/streams.rs
@@ -51,7 +51,7 @@ impl ListEntryPages {
51
self.die(S3Error::ListObjects {
52
bucket: self.bucket.clone(),
53
prefix: self.key_prefix.clone(),
54
- source,
+ source: Box::new(source),
55
})
56
}
57
0 commit comments