Skip to content

Commit 90fb660

Browse files
committed
Cleaned up warnings
1 parent fd7c7cc commit 90fb660

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sdk/storage/azure_storage_blob/perf/list_blob_test.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ impl PerfTest for ListBlobTest {
7373
async fn setup(&self, _context: &TestContext) -> azure_core::Result<()> {
7474
// Setup code before running the test
7575

76-
let result = self.client.create_container(None).await?;
76+
let _result = self.client.create_container(None).await?;
7777

7878
for i in 0..self.count {
7979
let blob_name = format!("blob-{}", i);
@@ -82,7 +82,7 @@ impl PerfTest for ListBlobTest {
8282
let body = vec![0u8; 1024 * 1024]; // 1 MB blob
8383
let body_bytes = Bytes::from(body);
8484

85-
let result = blob_client.upload(body_bytes.into(), true, 5, None).await?;
85+
let _result = blob_client.upload(body_bytes.into(), true, 5, None).await?;
8686
}
8787

8888
Ok(())
@@ -93,7 +93,7 @@ impl PerfTest for ListBlobTest {
9393

9494
let mut iterator = self.client.list_blobs(None)?;
9595
while let Some(blob_segment) = iterator.try_next().await? {
96-
let body = blob_segment.into_body()?;
96+
let _body = blob_segment.into_body()?;
9797
}
9898

9999
Ok(())

0 commit comments

Comments
 (0)