Skip to content

Commit

Permalink
fix oversight in S3
Browse files Browse the repository at this point in the history
  • Loading branch information
roeap committed May 15, 2022
1 parent 86c1c1c commit d852f43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rust/src/storage/s3/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ impl S3StorageOptions {
}

fn ensure_env_var(map: &HashMap<String, String>, key: &str) {
if let Some(val) = Self::str_option(map, key) {
if let Some(val) = str_option(map, key) {
std::env::set_var(key, val);
}
}
Expand Down

0 comments on commit d852f43

Please sign in to comment.