We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f900520 commit 3558bd7Copy full SHA for 3558bd7
1 file changed
tdxctl/src/tboot.rs
@@ -61,7 +61,11 @@ impl AppIdValidator {
61
bail!("Missing app id");
62
};
63
let app_id = hex::encode(app_id);
64
- if !self.allowed_app_id.to_lowercase().contains(&app_id.to_lowercase()) {
+ if !self
65
+ .allowed_app_id
66
+ .to_lowercase()
67
+ .contains(&app_id.to_lowercase())
68
+ {
69
bail!("Invalid dstack-gateway app id: {app_id}");
70
}
71
Ok(())
0 commit comments