Skip to content

Commit

Permalink
Use faster bincode for ipc
Browse files Browse the repository at this point in the history
Signed-off-by: Bob Weinand <[email protected]>
  • Loading branch information
bwoebi committed Mar 4, 2024
1 parent 552b0ef commit 4486d06
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 9 additions & 2 deletions tests/Integrations/Custom/Autoloaded/InstrumentationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,16 +82,23 @@ public function testInstrumentation()
[
"name" => "pdo",
"enabled" => true,
'version' => null,
'compatible' => null,
'auto_enabled' => null,
],
[
"name" => "exec",
"enabled" => false,
"version" => ""
"version" => "",
'compatible' => null,
'auto_enabled' => null,
],
[
"name" => "logs",
"enabled" => false,
"version" => ""
"version" => "",
'compatible' => null,
'auto_enabled' => null,
]
], $payloads[2]["payload"]["integrations"]);
}
Expand Down
14 changes: 12 additions & 2 deletions tests/ext/telemetry/integration.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -72,20 +72,30 @@ array(1) {
["integrations"]=>
array(2) {
[0]=>
array(2) {
array(5) {
["name"]=>
string(37) "ddtrace\test\testsandboxedintegration"
["enabled"]=>
bool(true)
["version"]=>
NULL
["compatible"]=>
NULL
["auto_enabled"]=>
NULL
}
[1]=>
array(3) {
array(5) {
["name"]=>
string(4) "logs"
["enabled"]=>
bool(false)
["version"]=>
string(0) ""
["compatible"]=>
NULL
["auto_enabled"]=>
NULL
}
}
}
Expand Down

0 comments on commit 4486d06

Please sign in to comment.