Open
Description
When happy eyeballs is enabled, DialContext makes parallel calls to dialSingle via dialParallel:
Line 415 in 424b065
Each dialSingle call may call ctx.Value, such as here:
Line 533 in 424b065
dialParallel doesn't wait for all dialSingle calls to complete. This means, in theory, dialSingle can call ctx.Value on a ctx that has gone out of scope. This is effectively the same problem as #21597.
/cc @bcmills