Skip to content

Commit 0a86e15

Browse files
authored
Use faster bincode for ipc (#2544)
Signed-off-by: Bob Weinand <[email protected]>
1 parent b3569d5 commit 0a86e15

File tree

4 files changed

+23
-6
lines changed

4 files changed

+23
-6
lines changed

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
@@ -86,16 +86,23 @@ public function testInstrumentation()
8686
[
8787
"name" => "pdo",
8888
"enabled" => true,
89+
'version' => null,
90+
'compatible' => null,
91+
'auto_enabled' => null,
8992
],
9093
[
9194
"name" => "exec",
9295
"enabled" => false,
93-
"version" => ""
96+
"version" => "",
97+
'compatible' => null,
98+
'auto_enabled' => null,
9499
],
95100
[
96101
"name" => "logs",
97102
"enabled" => false,
98-
"version" => ""
103+
"version" => "",
104+
'compatible' => null,
105+
'auto_enabled' => null,
99106
]
100107
], $payloads[2]["payload"]["integrations"]);
101108
}

tests/ext/telemetry/integration.phpt

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,20 +73,30 @@ array(1) {
7373
["integrations"]=>
7474
array(2) {
7575
[0]=>
76-
array(2) {
76+
array(5) {
7777
["name"]=>
7878
string(37) "ddtrace\test\testsandboxedintegration"
7979
["enabled"]=>
8080
bool(true)
81+
["version"]=>
82+
NULL
83+
["compatible"]=>
84+
NULL
85+
["auto_enabled"]=>
86+
NULL
8187
}
8288
[1]=>
83-
array(3) {
89+
array(5) {
8490
["name"]=>
8591
string(4) "logs"
8692
["enabled"]=>
8793
bool(false)
8894
["version"]=>
8995
string(0) ""
96+
["compatible"]=>
97+
NULL
98+
["auto_enabled"]=>
99+
NULL
90100
}
91101
}
92102
}

0 commit comments

Comments
 (0)