File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -205,13 +205,16 @@ impl FromStr for PathDescriptor {
205205
206206 let bucket = map
207207 . get ( S3_KEY_BUCKET )
208- . ok_or_else ( || anyhow:: anyhow!( "missing {S3_KEY_BUCKET}" ) ) ?. clone ( ) ;
208+ . ok_or_else ( || anyhow:: anyhow!( "missing {S3_KEY_BUCKET}" ) ) ?
209+ . clone ( ) ;
209210 let path = map
210211 . get ( S3_KEY_PATH )
211- . ok_or_else ( || anyhow:: anyhow!( "missing {S3_KEY_PATH}" ) ) ?. clone ( ) ;
212+ . ok_or_else ( || anyhow:: anyhow!( "missing {S3_KEY_PATH}" ) ) ?
213+ . clone ( ) ;
212214 let credentials_path = map
213215 . get ( S3_KEY_CREDENTIALS_PATH )
214- . ok_or_else ( || anyhow:: anyhow!( "missing {S3_KEY_CREDENTIALS_PATH}" ) ) ?. clone ( ) ;
216+ . ok_or_else ( || anyhow:: anyhow!( "missing {S3_KEY_CREDENTIALS_PATH}" ) ) ?
217+ . clone ( ) ;
215218
216219 let region = map. get ( S3_KEY_REGION ) . cloned ( ) ;
217220 let endpoint = map. get ( S3_KEY_ENDPOINT ) . cloned ( ) ;
You can’t perform that action at this time.
0 commit comments