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
{{ message }}
This repository was archived by the owner on Feb 25, 2026. It is now read-only.
The HTTP server that consumes data from the Stacks node always returns a 200 status code regardless if the block has been ingested correctly or not, because the response handlers never actually return an error, the error is only reflected in the body:
returnJson(json!({"status":500,"result": format!("Unable to standardize stacks block {}", e),}));
Because of this, the Stacks node continues to advance the chain creating gaps in the index that are impossible to recover from. This is related to #623
The HTTP server that consumes data from the Stacks node always returns a
200status code regardless if the block has been ingested correctly or not, because the response handlers never actually return an error, the error is only reflected in the body:Because of this, the Stacks node continues to advance the chain creating gaps in the index that are impossible to recover from. This is related to #623