You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(server): rebuild server requests through the positional constructor (#1349)
The internal request rebuilds in _stream_request_metadata and
_buffer_server_request went through the public keyword constructor. On
current Julia master (1.14-dev) that Core.kwcall is no longer statically
resolvable, so these two sites fail juliac --trim=safe verification (they
verified on earlier 1.14-dev revisions; likely an upstream inference or
verifier behavior change, worth tracking separately). Rebuilding through
the positional _request_nocopy constructor sidesteps the kwcall entirely,
reproduces the keyword constructor's header/trailer copy semantics
explicitly, and gives _buffer_server_request one concrete-body
construction per branch instead of a Union-typed rebuild.
Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
0 commit comments