Loading crates/s3s-aws/Cargo.toml +1 −0 Original line number Diff line number Diff line Loading @@ -18,3 +18,4 @@ aws-smithy-types-convert = { version = "0.53.1", features = ["convert-time"] } futures = { version = "0.3.25", default-features = false, features = ["std"] } hyper = "0.14.23" s3s = { version = "0.2.0-dev", path = "../s3s" } tracing = "0.1.37" crates/s3s-aws/src/proxy/mod.rs +2 −0 Original line number Diff line number Diff line Loading @@ -5,6 +5,8 @@ macro_rules! wrap_sdk_error { let mut err = S3Error::new(S3ErrorCode::InternalError); let source = $e; tracing::debug!("sdk error: {:?}", source); if let SdkError::ServiceError(ref e) = source { let meta = e.err().meta(); if let Some(val) = meta.code().and_then(|s| S3ErrorCode::from_bytes(s.as_bytes())) { Loading Loading
crates/s3s-aws/Cargo.toml +1 −0 Original line number Diff line number Diff line Loading @@ -18,3 +18,4 @@ aws-smithy-types-convert = { version = "0.53.1", features = ["convert-time"] } futures = { version = "0.3.25", default-features = false, features = ["std"] } hyper = "0.14.23" s3s = { version = "0.2.0-dev", path = "../s3s" } tracing = "0.1.37"
crates/s3s-aws/src/proxy/mod.rs +2 −0 Original line number Diff line number Diff line Loading @@ -5,6 +5,8 @@ macro_rules! wrap_sdk_error { let mut err = S3Error::new(S3ErrorCode::InternalError); let source = $e; tracing::debug!("sdk error: {:?}", source); if let SdkError::ServiceError(ref e) = source { let meta = e.err().meta(); if let Some(val) = meta.code().and_then(|s| S3ErrorCode::from_bytes(s.as_bytes())) { Loading