File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed 
sdk/storage_blobs/examples Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -26,16 +26,10 @@ async fn main() -> azure_core::Result<()> {
2626    let  blob_client =
2727        ClientBuilder :: new ( account,  storage_credentials) . blob_client ( & container,  & blob_name) ; 
2828
29-     //let data = b"something"; 
30- 
3129    let  mut  metadata = Metadata :: new ( ) ; 
3230
33-     metadata. insert ( "pollo" . to_owned ( ) ,  "arrosto" . to_owned ( ) ) ; 
34-     metadata. insert ( "milk" . to_owned ( ) ,  "shake" . to_owned ( ) ) ; 
35- 
36-     // this is not mandatory but it helps preventing 
37-     // spurious data to be uploaded. 
38-     //let _hash = md5::compute(data).into(); 
31+     metadata. insert ( "pollo" ,  "arrosto" ) ; 
32+     metadata. insert ( "milk" ,  "shake" ) ; 
3933
4034    // The required parameters are container_name, blob_name and body. 
4135    // The builder supports many more optional 
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments