Skip to content

Fix race condition in IpcTests#8013

Merged
NachoEchevarria merged 2 commits intomasterfrom
nacho/FixIpcTests
Jan 7, 2026
Merged

Fix race condition in IpcTests#8013
NachoEchevarria merged 2 commits intomasterfrom
nacho/FixIpcTests

Conversation

@NachoEchevarria
Copy link
Collaborator

@NachoEchevarria NachoEchevarria commented Dec 24, 2025

Summary of changes

Fixed race condition in IpcClientTest that caused intermittent test failures where finalValue.ClientValue was 19 instead of 20.

Reason for change

The test was failing intermittently in CI with:
Expected finalValue.ClientValue to be 20, but found 19 (difference of -1).

Root cause: Race condition where TaskCompletionSource.TrySetResult(true) signaled completion before Interlocked.Exchange(ref finalValue, value) updated finalValue with the final message. The main test thread would wake up and read finalValue before it contained the final state.

Starting with message (19, 19):

server -> value.ServerValue++; // Server: (19,19) → (20,19)
server -> server.TrySendMessage(value) // Sends (20,19) to client
client -> value.ClientValue++; // Client: (20,19) → (20,20)
client -> Interlocked.Exchange(ref finalValue, value); // ✅ Stores (20,20)
client -> clientTaskCompletion.TrySetResult(true); // ✅ Signals client done
server -> Interlocked.Exchange(ref finalValue, value); // ❌ Stores (20,19) - OVERWRITES!
server -> serverTaskCompletion.TrySetResult(true); // ✅ Signals server done

Implementation details

Moved Interlocked.Exchange(ref finalValue, value) outside the if (value < maxNumber) conditional blocks in both server and client callbacks (IpcTests.cs:42 and IpcTests.cs:62). Now every received message updates finalValue, not just messages with values < 20.

This ensures that when TaskCompletionSource signals completion, finalValue is guaranteed to contain the most recent message state.

Test coverage

Other details

@github-actions github-actions bot added the area:tests unit tests, integration tests label Dec 24, 2025
@datadog-datadog-prod-us1

This comment has been minimized.

@dd-trace-dotnet-ci-bot
Copy link

dd-trace-dotnet-ci-bot bot commented Dec 24, 2025

Execution-Time Benchmarks Report ⏱️

Execution-time results for samples comparing This PR (8013) and master.

✅ No regressions detected - check the details below

Full Metrics Comparison

FakeDbCommand

Metric Master (Mean ± 95% CI) Current (Mean ± 95% CI) Change Status
.NET Framework 4.8 - Baseline
duration68.33 ± (68.34 - 68.51) ms68.30 ± (68.26 - 68.43) ms-0.0%
.NET Framework 4.8 - Bailout
duration72.21 ± (72.12 - 72.31) ms71.97 ± (71.99 - 72.21) ms-0.3%
.NET Framework 4.8 - CallTarget+Inlining+NGEN
duration1004.71 ± (1010.54 - 1019.10) ms1004.38 ± (1009.10 - 1016.80) ms-0.0%
.NET Core 3.1 - Baseline
process.internal_duration_ms21.86 ± (21.83 - 21.89) ms21.96 ± (21.93 - 22.00) ms+0.5%✅⬆️
process.time_to_main_ms78.72 ± (78.58 - 78.87) ms78.74 ± (78.59 - 78.89) ms+0.0%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed10.91 ± (10.91 - 10.92) MB10.92 ± (10.91 - 10.92) MB+0.0%✅⬆️
runtime.dotnet.threads.count12 ± (12 - 12)12 ± (12 - 12)+0.0%
.NET Core 3.1 - Bailout
process.internal_duration_ms21.80 ± (21.78 - 21.82) ms21.84 ± (21.82 - 21.86) ms+0.2%✅⬆️
process.time_to_main_ms79.71 ± (79.61 - 79.80) ms79.97 ± (79.87 - 80.07) ms+0.3%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed10.96 ± (10.95 - 10.96) MB10.95 ± (10.94 - 10.95) MB-0.1%
runtime.dotnet.threads.count13 ± (13 - 13)13 ± (13 - 13)+0.0%
.NET Core 3.1 - CallTarget+Inlining+NGEN
process.internal_duration_ms229.26 ± (225.33 - 233.19) ms235.34 ± (231.05 - 239.63) ms+2.7%✅⬆️
process.time_to_main_ms470.66 ± (470.12 - 471.19) ms470.93 ± (470.41 - 471.46) ms+0.1%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed48.16 ± (48.14 - 48.18) MB48.16 ± (48.14 - 48.18) MB+0.0%✅⬆️
runtime.dotnet.threads.count28 ± (28 - 28)28 ± (28 - 28)-0.1%
.NET 6 - Baseline
process.internal_duration_ms20.64 ± (20.60 - 20.69) ms20.77 ± (20.74 - 20.79) ms+0.6%✅⬆️
process.time_to_main_ms67.95 ± (67.83 - 68.07) ms68.22 ± (68.13 - 68.32) ms+0.4%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed10.61 ± (10.60 - 10.61) MB10.63 ± (10.63 - 10.64) MB+0.3%✅⬆️
runtime.dotnet.threads.count10 ± (10 - 10)10 ± (10 - 10)+0.0%
.NET 6 - Bailout
process.internal_duration_ms20.52 ± (20.50 - 20.55) ms20.71 ± (20.69 - 20.73) ms+0.9%✅⬆️
process.time_to_main_ms68.86 ± (68.80 - 68.91) ms69.08 ± (69.04 - 69.13) ms+0.3%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed10.66 ± (10.66 - 10.66) MB10.73 ± (10.72 - 10.74) MB+0.6%✅⬆️
runtime.dotnet.threads.count11 ± (11 - 11)11 ± (11 - 11)+0.0%
.NET 6 - CallTarget+Inlining+NGEN
process.internal_duration_ms241.45 ± (239.08 - 243.81) ms245.05 ± (242.51 - 247.59) ms+1.5%✅⬆️
process.time_to_main_ms439.07 ± (438.62 - 439.53) ms442.68 ± (442.26 - 443.10) ms+0.8%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed48.60 ± (48.58 - 48.63) MB48.64 ± (48.60 - 48.67) MB+0.1%✅⬆️
runtime.dotnet.threads.count28 ± (28 - 28)28 ± (28 - 28)-0.0%
.NET 8 - Baseline
process.internal_duration_ms18.82 ± (18.79 - 18.85) ms18.80 ± (18.77 - 18.83) ms-0.1%
process.time_to_main_ms67.02 ± (66.91 - 67.14) ms67.06 ± (66.96 - 67.17) ms+0.1%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed7.67 ± (7.66 - 7.67) MB7.68 ± (7.68 - 7.69) MB+0.2%✅⬆️
runtime.dotnet.threads.count10 ± (10 - 10)10 ± (10 - 10)+0.0%
.NET 8 - Bailout
process.internal_duration_ms18.87 ± (18.84 - 18.89) ms18.91 ± (18.88 - 18.95) ms+0.3%✅⬆️
process.time_to_main_ms68.24 ± (68.17 - 68.31) ms68.39 ± (68.30 - 68.48) ms+0.2%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed7.74 ± (7.73 - 7.75) MB7.74 ± (7.73 - 7.74) MB-0.0%
runtime.dotnet.threads.count11 ± (11 - 11)11 ± (11 - 11)+0.0%
.NET 8 - CallTarget+Inlining+NGEN
process.internal_duration_ms178.59 ± (177.60 - 179.59) ms178.06 ± (177.17 - 178.95) ms-0.3%
process.time_to_main_ms424.40 ± (423.86 - 424.95) ms426.41 ± (425.74 - 427.07) ms+0.5%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed36.25 ± (36.22 - 36.28) MB36.38 ± (36.35 - 36.41) MB+0.4%✅⬆️
runtime.dotnet.threads.count27 ± (27 - 27)27 ± (27 - 27)+0.0%✅⬆️

HttpMessageHandler

Metric Master (Mean ± 95% CI) Current (Mean ± 95% CI) Change Status
.NET Framework 4.8 - Baseline
duration193.21 ± (193.05 - 193.85) ms193.11 ± (192.99 - 193.85) ms-0.1%
.NET Framework 4.8 - Bailout
duration196.67 ± (196.36 - 196.86) ms196.74 ± (196.52 - 197.07) ms+0.0%✅⬆️
.NET Framework 4.8 - CallTarget+Inlining+NGEN
duration1106.89 ± (1110.14 - 1117.25) ms1116.00 ± (1114.03 - 1121.73) ms+0.8%✅⬆️
.NET Core 3.1 - Baseline
process.internal_duration_ms188.69 ± (188.33 - 189.05) ms188.54 ± (188.10 - 188.97) ms-0.1%
process.time_to_main_ms80.83 ± (80.61 - 81.05) ms81.12 ± (80.86 - 81.39) ms+0.4%✅⬆️
runtime.dotnet.exceptions.count3 ± (3 - 3)3 ± (3 - 3)+0.0%
runtime.dotnet.mem.committed16.07 ± (16.04 - 16.10) MB16.10 ± (16.07 - 16.13) MB+0.2%✅⬆️
runtime.dotnet.threads.count20 ± (20 - 20)20 ± (20 - 20)-0.1%
.NET Core 3.1 - Bailout
process.internal_duration_ms188.84 ± (188.41 - 189.27) ms187.83 ± (187.40 - 188.27) ms-0.5%
process.time_to_main_ms82.44 ± (82.26 - 82.62) ms82.26 ± (82.07 - 82.45) ms-0.2%
runtime.dotnet.exceptions.count3 ± (3 - 3)3 ± (3 - 3)+0.0%
runtime.dotnet.mem.committed16.10 ± (16.08 - 16.13) MB16.17 ± (16.14 - 16.20) MB+0.4%✅⬆️
runtime.dotnet.threads.count21 ± (21 - 21)21 ± (20 - 21)-0.1%
.NET Core 3.1 - CallTarget+Inlining+NGEN
process.internal_duration_ms421.47 ± (417.91 - 425.03) ms425.02 ± (421.76 - 428.27) ms+0.8%✅⬆️
process.time_to_main_ms474.29 ± (473.65 - 474.93) ms473.06 ± (472.57 - 473.55) ms-0.3%
runtime.dotnet.exceptions.count3 ± (3 - 3)3 ± (3 - 3)+0.0%
runtime.dotnet.mem.committed58.38 ± (58.26 - 58.51) MB58.62 ± (58.51 - 58.73) MB+0.4%✅⬆️
runtime.dotnet.threads.count29 ± (29 - 30)29 ± (29 - 30)-0.0%
.NET 6 - Baseline
process.internal_duration_ms191.77 ± (191.46 - 192.09) ms192.44 ± (192.11 - 192.76) ms+0.3%✅⬆️
process.time_to_main_ms69.79 ± (69.64 - 69.93) ms69.84 ± (69.72 - 69.96) ms+0.1%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed15.81 ± (15.63 - 15.98) MB16.18 ± (16.05 - 16.31) MB+2.4%✅⬆️
runtime.dotnet.threads.count18 ± (18 - 18)19 ± (19 - 19)+4.8%✅⬆️
.NET 6 - Bailout
process.internal_duration_ms191.76 ± (191.48 - 192.04) ms191.10 ± (190.80 - 191.40) ms-0.3%
process.time_to_main_ms70.89 ± (70.81 - 70.97) ms70.90 ± (70.78 - 71.02) ms+0.0%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed16.26 ± (16.14 - 16.38) MB16.16 ± (16.02 - 16.29) MB-0.6%
runtime.dotnet.threads.count20 ± (20 - 20)19 ± (19 - 20)-1.6%
.NET 6 - CallTarget+Inlining+NGEN
process.internal_duration_ms444.93 ± (441.51 - 448.36) ms447.10 ± (443.99 - 450.22) ms+0.5%✅⬆️
process.time_to_main_ms444.37 ± (443.93 - 444.82) ms444.86 ± (444.36 - 445.36) ms+0.1%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed58.17 ± (58.06 - 58.27) MB58.46 ± (58.33 - 58.59) MB+0.5%✅⬆️
runtime.dotnet.threads.count30 ± (29 - 30)30 ± (30 - 30)+0.2%✅⬆️
.NET 8 - Baseline
process.internal_duration_ms190.92 ± (190.50 - 191.34) ms189.97 ± (189.71 - 190.23) ms-0.5%
process.time_to_main_ms69.75 ± (69.54 - 69.95) ms69.30 ± (69.13 - 69.46) ms-0.6%
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed11.69 ± (11.66 - 11.71) MB11.75 ± (11.72 - 11.78) MB+0.5%✅⬆️
runtime.dotnet.threads.count18 ± (18 - 18)18 ± (18 - 18)-0.2%
.NET 8 - Bailout
process.internal_duration_ms189.09 ± (188.90 - 189.28) ms190.15 ± (189.83 - 190.46) ms+0.6%✅⬆️
process.time_to_main_ms70.46 ± (70.38 - 70.53) ms70.75 ± (70.63 - 70.87) ms+0.4%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed11.76 ± (11.72 - 11.80) MB11.80 ± (11.77 - 11.83) MB+0.4%✅⬆️
runtime.dotnet.threads.count19 ± (19 - 19)19 ± (19 - 19)+0.4%✅⬆️
.NET 8 - CallTarget+Inlining+NGEN
process.internal_duration_ms362.91 ± (361.33 - 364.50) ms366.35 ± (364.94 - 367.76) ms+0.9%✅⬆️
process.time_to_main_ms427.44 ± (426.79 - 428.09) ms429.00 ± (428.46 - 429.54) ms+0.4%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed47.90 ± (47.87 - 47.94) MB47.98 ± (47.95 - 48.01) MB+0.2%✅⬆️
runtime.dotnet.threads.count29 ± (29 - 29)29 ± (29 - 29)-0.3%
Comparison explanation

Execution-time benchmarks measure the whole time it takes to execute a program, and are intended to measure the one-off costs. Cases where the execution time results for the PR are worse than latest master results are highlighted in **red**. The following thresholds were used for comparing the execution times:

  • Welch test with statistical test for significance of 5%
  • Only results indicating a difference greater than 5% and 5 ms are considered.

Note that these results are based on a single point-in-time result for each branch. For full results, see the dashboard.

Graphs show the p99 interval based on the mean and StdDev of the test run, as well as the mean value of the run (shown as a diamond below the graph).

Duration charts
FakeDbCommand (.NET Framework 4.8)
gantt
    title Execution time (ms) FakeDbCommand (.NET Framework 4.8)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8013) - mean (68ms)  : 67, 70
    master - mean (68ms)  : 67, 70

    section Bailout
    This PR (8013) - mean (72ms)  : 71, 73
    master - mean (72ms)  : 71, 73

    section CallTarget+Inlining+NGEN
    This PR (8013) - mean (1,013ms)  : 955, 1071
    master - mean (1,015ms)  : 951, 1079

Loading
FakeDbCommand (.NET Core 3.1)
gantt
    title Execution time (ms) FakeDbCommand (.NET Core 3.1)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8013) - mean (106ms)  : 104, 108
    master - mean (106ms)  : 104, 108

    section Bailout
    This PR (8013) - mean (107ms)  : 106, 108
    master - mean (107ms)  : 105, 108

    section CallTarget+Inlining+NGEN
    This PR (8013) - mean (731ms)  : 671, 792
    master - mean (725ms)  : 669, 780

Loading
FakeDbCommand (.NET 6)
gantt
    title Execution time (ms) FakeDbCommand (.NET 6)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8013) - mean (94ms)  : 92, 96
    master - mean (93ms)  : 90, 96

    section Bailout
    This PR (8013) - mean (94ms)  : 93, 95
    master - mean (94ms)  : 93, 95

    section CallTarget+Inlining+NGEN
    This PR (8013) - mean (714ms)  : 674, 754
    master - mean (707ms)  : 676, 738

Loading
FakeDbCommand (.NET 8)
gantt
    title Execution time (ms) FakeDbCommand (.NET 8)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8013) - mean (92ms)  : 90, 94
    master - mean (92ms)  : 90, 93

    section Bailout
    This PR (8013) - mean (93ms)  : 92, 95
    master - mean (93ms)  : 92, 95

    section CallTarget+Inlining+NGEN
    This PR (8013) - mean (632ms)  : 619, 645
    master - mean (631ms)  : 613, 649

Loading
HttpMessageHandler (.NET Framework 4.8)
gantt
    title Execution time (ms) HttpMessageHandler (.NET Framework 4.8)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8013) - mean (193ms)  : 189, 198
    master - mean (193ms)  : 190, 197

    section Bailout
    This PR (8013) - mean (197ms)  : 194, 199
    master - mean (197ms)  : 194, 199

    section CallTarget+Inlining+NGEN
    This PR (8013) - mean (1,118ms)  : 1062, 1174
    master - mean (1,114ms)  : 1062, 1165

Loading
HttpMessageHandler (.NET Core 3.1)
gantt
    title Execution time (ms) HttpMessageHandler (.NET Core 3.1)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8013) - mean (278ms)  : 272, 284
    master - mean (278ms)  : 273, 283

    section Bailout
    This PR (8013) - mean (278ms)  : 272, 285
    master - mean (280ms)  : 273, 288

    section CallTarget+Inlining+NGEN
    This PR (8013) - mean (928ms)  : 886, 969
    master - mean (923ms)  : 866, 980

Loading
HttpMessageHandler (.NET 6)
gantt
    title Execution time (ms) HttpMessageHandler (.NET 6)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8013) - mean (271ms)  : 267, 275
    master - mean (270ms)  : 266, 274

    section Bailout
    This PR (8013) - mean (270ms)  : 266, 274
    master - mean (271ms)  : 267, 274

    section CallTarget+Inlining+NGEN
    This PR (8013) - mean (922ms)  : 879, 966
    master - mean (918ms)  : 872, 964

Loading
HttpMessageHandler (.NET 8)
gantt
    title Execution time (ms) HttpMessageHandler (.NET 8)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8013) - mean (269ms)  : 265, 273
    master - mean (270ms)  : 264, 277

    section Bailout
    This PR (8013) - mean (270ms)  : 266, 274
    master - mean (269ms)  : 266, 271

    section CallTarget+Inlining+NGEN
    This PR (8013) - mean (826ms)  : 807, 846
    master - mean (822ms)  : 803, 841

Loading

@pr-commenter
Copy link

pr-commenter bot commented Jan 7, 2026

Benchmarks

Benchmark execution time: 2026-01-07 11:13:12

Comparing candidate commit 0e4f488 in PR branch nacho/FixIpcTests with baseline commit b70d8ff in branch master.

Found 12 performance improvements and 7 performance regressions! Performance is the same for 158 metrics, 9 unstable metrics.

scenario:Benchmarks.Trace.ActivityBenchmark.StartStopWithChild netcoreapp3.1

  • 🟩 throughput [+3813.437op/s; +5802.925op/s] or [+5.681%; +8.645%]

scenario:Benchmarks.Trace.Asm.AppSecBodyBenchmark.AllCycleMoreComplexBody netcoreapp3.1

  • 🟩 execution_time [-17.971ms; -12.409ms] or [-8.616%; -5.949%]

scenario:Benchmarks.Trace.Asm.AppSecEncoderBenchmark.EncodeLegacyArgs net6.0

  • 🟩 execution_time [-26.579ms; -26.415ms] or [-12.999%; -12.919%]

scenario:Benchmarks.Trace.Asm.AppSecEncoderBenchmark.EncodeLegacyArgs netcoreapp3.1

  • 🟩 execution_time [-23.161ms; -22.448ms] or [-11.446%; -11.094%]

scenario:Benchmarks.Trace.Asm.AppSecWafBenchmark.RunWafRealisticBenchmarkWithAttack netcoreapp3.1

  • 🟥 throughput [-435.211op/s; -151.210op/s] or [-15.065%; -5.234%]

scenario:Benchmarks.Trace.AspNetCoreBenchmark.SendRequest net6.0

  • 🟥 execution_time [+96.710ms; +97.704ms] or [+95.680%; +96.664%]

scenario:Benchmarks.Trace.CIVisibilityProtocolWriterBenchmark.WriteAndFlushEnrichedTraces net472

  • 🟥 execution_time [+14.199ms; +19.170ms] or [+7.207%; +9.730%]

scenario:Benchmarks.Trace.CIVisibilityProtocolWriterBenchmark.WriteAndFlushEnrichedTraces net6.0

  • 🟩 throughput [+199.595op/s; +323.217op/s] or [+15.505%; +25.108%]

scenario:Benchmarks.Trace.CIVisibilityProtocolWriterBenchmark.WriteAndFlushEnrichedTraces netcoreapp3.1

  • 🟥 execution_time [+30.255ms; +37.200ms] or [+20.523%; +25.234%]

scenario:Benchmarks.Trace.CharSliceBenchmark.OptimizedCharSlice net6.0

  • 🟩 execution_time [-96.567µs; -84.206µs] or [-6.524%; -5.688%]
  • 🟩 throughput [+40.831op/s; +47.119op/s] or [+6.044%; +6.975%]

scenario:Benchmarks.Trace.CharSliceBenchmark.OptimizedCharSliceWithPool net6.0

  • 🟩 execution_time [-72.766µs; -67.847µs] or [-6.717%; -6.263%]
  • 🟩 throughput [+61.888op/s; +66.222op/s] or [+6.704%; +7.174%]

scenario:Benchmarks.Trace.DbCommandBenchmark.ExecuteNonQuery net472

  • 🟥 execution_time [+15.948ms; +17.822ms] or [+8.671%; +9.690%]

scenario:Benchmarks.Trace.Iast.StringAspectsBenchmark.StringConcatBenchmark net6.0

  • 🟩 execution_time [-8.240µs; -4.253µs] or [-16.962%; -8.754%]
  • 🟩 throughput [+1975.427op/s; +3377.592op/s] or [+9.404%; +16.079%]

scenario:Benchmarks.Trace.SpanBenchmark.StartFinishScope net6.0

  • 🟩 execution_time [-17.897ms; -14.092ms] or [-8.291%; -6.528%]

scenario:Benchmarks.Trace.SpanBenchmark.StartFinishScope netcoreapp3.1

  • 🟥 execution_time [+11.675ms; +16.409ms] or [+5.885%; +8.272%]

scenario:Benchmarks.Trace.TraceAnnotationsBenchmark.RunOnMethodBegin net6.0

  • 🟥 execution_time [+10.618ms; +14.866ms] or [+5.372%; +7.522%]

@NachoEchevarria NachoEchevarria marked this pull request as ready for review January 7, 2026 11:25
@NachoEchevarria NachoEchevarria requested a review from a team as a code owner January 7, 2026 11:25
Copy link
Member

@andrewlock andrewlock left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice catch 👍

@NachoEchevarria NachoEchevarria merged commit 79f4ccc into master Jan 7, 2026
151 checks passed
@NachoEchevarria NachoEchevarria deleted the nacho/FixIpcTests branch January 7, 2026 14:33
@github-actions github-actions bot added this to the vNext-v3 milestone Jan 7, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

area:tests unit tests, integration tests type:flake-fix

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants