Skip to content

Commit d884b9d

Browse files
committed
cargo fmt
1 parent cbbf2ab commit d884b9d

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

server/src/main.rs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -252,9 +252,10 @@ async fn auth(
252252
debug!("Incoming ak name {}", ak_name_hex);
253253

254254
// Get or create node by matching all three TPM values (EK, AK public, AK name)
255-
let (node, created) = get_or_create_node_by_ek(&app.db, &ek_public_hex, &ak_public_hex, &ak_name_hex)
256-
.await
257-
.map_err(ErrorInternalServerError)?;
255+
let (node, created) =
256+
get_or_create_node_by_ek(&app.db, &ek_public_hex, &ak_public_hex, &ak_name_hex)
257+
.await
258+
.map_err(ErrorInternalServerError)?;
258259

259260
if created {
260261
info!("Created new node {}", node.id);

0 commit comments

Comments
 (0)