Skip to content

Commit

Permalink
Merge pull request jmgilman#85 from stormshield-gt/do_not_log_unseal_key
Browse files Browse the repository at this point in the history
prevent leaking unseal key
  • Loading branch information
Haennetz authored Mar 27, 2024
2 parents 43e3214 + 3258581 commit a824255
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sys.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ pub async fn seal(client: &impl Client) -> Result<(), ClientError> {
/// Unseals the Vault server.
///
/// See [UnsealRequest]
#[instrument(skip(client), err)]
#[instrument(skip(client, key), err)]
pub async fn unseal(
client: &impl Client,
key: Option<String>,
Expand Down

0 comments on commit a824255

Please sign in to comment.