Skip to content

Commit 9e4544f

Browse files
committed
disable tracer computed stats
1 parent 10c9441 commit 9e4544f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

crates/datadog-trace-agent/src/mini_agent.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -521,7 +521,7 @@ impl MiniAgent {
521521
INFO_ENDPOINT_PATH,
522522
PROFILING_ENDPOINT_PATH
523523
],
524-
"client_drop_p0s": true,
524+
"client_drop_p0s": false,
525525
"config": config_json
526526
}
527527
);

crates/datadog-trace-agent/tests/integration_test.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -220,8 +220,8 @@ async fn test_mini_agent_tcp_handles_requests() {
220220

221221
// Check client_drop_p0s flag
222222
assert_eq!(
223-
json["client_drop_p0s"], true,
224-
"Expected client_drop_p0s to be true"
223+
json["client_drop_p0s"], false,
224+
"Expected client_drop_p0s to be false"
225225
);
226226

227227
// Check config object

0 commit comments

Comments
 (0)