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 ac34fbf commit da3db7aCopy full SHA for da3db7a
1 file changed
gateway/src/gen_debug_key.rs
@@ -1,3 +1,7 @@
1
+// SPDX-FileCopyrightText: © 2025 Phala Network <dstack@phala.network>
2
+//
3
+// SPDX-License-Identifier: Apache-2.0
4
+
5
// Run with: cargo run --bin gen_debug_key -- <simulator_url>
6
// Example: cargo run --bin gen_debug_key -- https://daee134c3b9f66aa2401c3b5ea64f1d34038f45d-3000.tdxlab.dstack.org:12004
7
@@ -71,7 +75,7 @@ async fn main() -> Result<()> {
71
75
println!("insecure_skip_attestation = true");
72
76
println!(
73
77
"key_file = \"{}\"",
74
- fs_err::canonicalize(&output_file)
78
+ fs_err::canonicalize(output_file)
79
.unwrap_or_default()
80
.display()
81
);
0 commit comments