Skip to content

Commit 4486d06

Browse files
committed
Use faster bincode for ipc
Signed-off-by: Bob Weinand <[email protected]>
1 parent 552b0ef commit 4486d06

4 files changed

Lines changed: 23 additions & 6 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/Integrations/Custom/Autoloaded/InstrumentationTest.php

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,16 +82,23 @@ public function testInstrumentation()
8282
[
8383
"name" => "pdo",
8484
"enabled" => true,
85+
'version' => null,
86+
'compatible' => null,
87+
'auto_enabled' => null,
8588
],
8689
[
8790
"name" => "exec",
8891
"enabled" => false,
89-
"version" => ""
92+
"version" => "",
93+
'compatible' => null,
94+
'auto_enabled' => null,
9095
],
9196
[
9297
"name" => "logs",
9398
"enabled" => false,
94-
"version" => ""
99+
"version" => "",
100+
'compatible' => null,
101+
'auto_enabled' => null,
95102
]
96103
], $payloads[2]["payload"]["integrations"]);
97104
}

tests/ext/telemetry/integration.phpt

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,20 +72,30 @@ array(1) {
7272
["integrations"]=>
7373
array(2) {
7474
[0]=>
75-
array(2) {
75+
array(5) {
7676
["name"]=>
7777
string(37) "ddtrace\test\testsandboxedintegration"
7878
["enabled"]=>
7979
bool(true)
80+
["version"]=>
81+
NULL
82+
["compatible"]=>
83+
NULL
84+
["auto_enabled"]=>
85+
NULL
8086
}
8187
[1]=>
82-
array(3) {
88+
array(5) {
8389
["name"]=>
8490
string(4) "logs"
8591
["enabled"]=>
8692
bool(false)
8793
["version"]=>
8894
string(0) ""
95+
["compatible"]=>
96+
NULL
97+
["auto_enabled"]=>
98+
NULL
8999
}
90100
}
91101
}

0 commit comments

Comments
 (0)