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 4ec8371 commit f900520Copy full SHA for f900520
1 file changed
tdxctl/src/tboot.rs
@@ -61,7 +61,7 @@ impl AppIdValidator {
61
bail!("Missing app id");
62
};
63
let app_id = hex::encode(app_id);
64
- if !self.allowed_app_id.contains(&app_id) {
+ if !self.allowed_app_id.to_lowercase().contains(&app_id.to_lowercase()) {
65
bail!("Invalid dstack-gateway app id: {app_id}");
66
}
67
Ok(())
0 commit comments