Skip to content

Commit

Permalink
Fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
augustuswm committed Oct 14, 2024
1 parent 30cd9ff commit 29a3419
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion v-api/src/authn/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ impl AuthToken {
Ok(token) => {
tracing::trace!("Extracted auth token");
Ok(AuthToken::Jwt(token))
},
}
Err(err) => {
tracing::debug!(?err, ?token, "Token is not a JWT, falling back to API key");

Expand Down
2 changes: 1 addition & 1 deletion v-api/src/context/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ where
None => {
tracing::debug!("No token found in request. Falling back to unauthenticated user");
self.builtin_unauthenticated_caller()
},
}
})
}

Expand Down

0 comments on commit 29a3419

Please sign in to comment.