Skip to content

Commit

Permalink
Fix showing wrong UUID
Browse files Browse the repository at this point in the history
Signed-off-by: Matej Justus <[email protected]>
  • Loading branch information
UntriexTv authored and ansasaki committed Oct 29, 2024
1 parent 74f2f39 commit 2ebb958
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion keylime-agent/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -685,7 +685,7 @@ fn get_uuid(agent_uuid_config: &str) -> String {
Err(_) => {
warn!("Misformatted UUID: {}", &uuid_config);
let agent_uuid = Uuid::new_v4();
info!("Using generated UUID: {}", &uuid_config);
info!("Using generated UUID: {}", &agent_uuid);
agent_uuid.to_string()
}
},
Expand Down

0 comments on commit 2ebb958

Please sign in to comment.