Skip to content

Commit

Permalink
auth: fix spi log.
Browse files Browse the repository at this point in the history
  • Loading branch information
ljl committed Jan 4, 2025
1 parent 652df8c commit 41fd82a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/supports/auth/src/serv/clients/spi_log_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ impl SpiLogClient {
if log_url.is_empty() || spi_owner.is_empty() {
return Ok(());
}
let spi_ctx = TardisContext { owner: spi_owner, ..ctx.clone() };
let spi_ctx = TardisContext { ak: spi_owner, ..ctx.clone() };
let headers = [("Tardis-Context".to_string(), TardisFuns::crypto.base64.encode(TardisFuns::json.obj_to_string(&spi_ctx)?))];

//add log item
Expand Down

0 comments on commit 41fd82a

Please sign in to comment.