Skip to content

Commit

Permalink
Update api.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
sanchda authored Nov 11, 2024
1 parent 4b98ab9 commit 637a057
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crashtracker/src/collector/api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -645,8 +645,8 @@ fn test_waitall_nohang() -> anyhow::Result<()> {

let path_to_receiver_binary =
"/tmp/libdatadog/bin/libdatadog-crashtracking-receiver".to_string();
let create_alt_stack = false;
let use_alt_stack = false;
let create_alt_stack = true; // doesn't matter, but most runtimes use it, so take it
let use_alt_stack = true;
let resolve_frames = StacktraceCollection::EnabledWithInprocessSymbols;
let stderr_filename = Some(format!("{dir}/stderr_{time}.txt"));
let stdout_filename = Some(format!("{dir}/stdout_{time}.txt"));
Expand Down

0 comments on commit 637a057

Please sign in to comment.