Skip to content

Commit

Permalink
Release unftp version 0.14.1 (#145)
Browse files Browse the repository at this point in the history
  • Loading branch information
robklg authored Feb 1, 2023
1 parent 8f71bff commit ff57fc5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## (TBD) unftp v0.14.1
## 2023-02-01 unftp v0.14.1

- Upgraded dependencies including all crates from https://github.com/bolcom/libunftp
The main change here is [caching of access tokens in the GCS backend](https://github.com/bolcom/libunftp/issues/384)
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ use unftp_sbe_gcs::options::AuthMethod;
fn load_user_file(
path: &str,
) -> Result<std::string::String, Box<dyn std::error::Error + Send + Sync + 'static>> {
let mut f = fs::File::open(&path)?;
let mut f = fs::File::open(path)?;

// The user file can be plaintext, gzipped, or gzipped+base64-encoded
// The gzip-base64 format is useful for overcoming configmap size limits in Kubernetes
Expand Down

0 comments on commit ff57fc5

Please sign in to comment.