fix(beacon): forward Content-Type header from upstream responses#806
Merged
fix(beacon): forward Content-Type header from upstream responses#806
Conversation
Add Content-Type to the beacon chain response headers whitelist. Without this, REST endpoints returning SSZ binary data (e.g. /eth/v2/debug/beacon/states) are mislabeled as application/json by dproxy, breaking client-side parsing. Companion fix: drpcorg/dproxy#2348
msizov
approved these changes
Mar 20, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Content-Typeto beacon chain response headers whitelist inBeaconChainSpecific.getResponseHeadersToForward()RestHttpReader.extractResponseHeaders()drops the Content-Type from upstream beacon nodesapplication/jsonfor all REST responses, causing SSZ binary data to be mislabeledProblem
GET /eth/v2/debug/beacon/states/{slot}withAccept: application/octet-streamreturns SSZ binary butContent-Type: application/json. Clients fail with:Observed from multiple providers (zero1node, nodesguru, kukisglobal). Actively used endpoint (~80+ req/hour).
Root cause
BeaconChainSpecific.getResponseHeadersToForward()only whitelistedEth-Consensus-*headers.Content-Typewas filtered out byRestHttpReader.extractResponseHeaders()before reaching the gRPCresponse_headersfield.Companion PR
drpcorg/dproxy#2348 — dproxy side: use upstream Content-Type when present instead of hardcoded
application/json