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 55fb305 commit 2d71fc4Copy full SHA for 2d71fc4
src/client/auth/aws.rs
@@ -153,7 +153,8 @@ async fn authenticate_stream_inner(
153
)
154
.await?;
155
156
- let client_second_payload_bytes = client_second_payload.encode_to_vec()?;
+ let mut client_second_payload_bytes = vec![];
157
+ client_second_payload.to_writer(&mut client_second_payload_bytes)?;
158
159
let sasl_continue = SaslContinue::new(
160
source.into(),
0 commit comments