Skip to content

Commit

Permalink
DANGER: enable attach_console on debug mode
Browse files Browse the repository at this point in the history
  • Loading branch information
Ulexus committed Oct 21, 2024
1 parent 04b0c11 commit 5ba801e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qos_enclave/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ fn boot() -> String {
memory_mib: memory_mib.parse::<u64>().unwrap(),
cpu_ids: None,
debug_mode: debug_mode.parse::<bool>().unwrap(),
attach_console: false,
attach_console: debug_mode.parse::<bool>().unwrap(),
cpu_count: Some(cpu_count.parse::<u32>().unwrap()),
enclave_name: Some(enclave_name.clone()),
};
Expand Down

0 comments on commit 5ba801e

Please sign in to comment.