Skip to content

Commit

Permalink
fix(services/webhdfs): rename auth value (#5342)
Browse files Browse the repository at this point in the history
  • Loading branch information
notauserx authored Nov 19, 2024
1 parent 0f45b5d commit 53c7122
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions core/src/services/webhdfs/backend.rs
Original file line number Diff line number Diff line change
Expand Up @@ -171,10 +171,7 @@ impl Builder for WebhdfsBuilder {

let atomic_write_dir = self.config.atomic_write_dir;

let auth = self
.config
.delegation
.map(|dt| format!("delegation_token={dt}"));
let auth = self.config.delegation.map(|dt| format!("delegation={dt}"));

let client = HttpClient::new()?;

Expand Down

0 comments on commit 53c7122

Please sign in to comment.