Skip to content

Promote 20260422#1

Open
myfreess wants to merge 6 commits into
devfrom
promote-20260422
Open

Promote 20260422#1
myfreess wants to merge 6 commits into
devfrom
promote-20260422

Conversation

@myfreess
Copy link
Copy Markdown

No description provided.

Copy link
Copy Markdown
Author

@codex review

Copy link
Copy Markdown

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Choose a reason for hiding this comment

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

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: d13b1ae8f8

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment thread src/stub.mbt
Comment on lines +23 to +27
ignore(
outgoing_stream.blocking_write_and_flush(b"Hello World!".to_fixedarray()),
)
outgoing_stream.drop()
outgoing_body.finish(None).unwrap_or_error()
ignore(outgoing_body.finish(None))
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P2 Badge Handle stream write/finalize failures explicitly

Both blocking_write_and_flush and outgoing_body.finish can return errors (for example when the client disconnects or when body finalization fails), but this change discards both results with ignore(...). That turns real response-delivery failures into silent success paths, making truncated/corrupted responses hard to detect and debug in production; previously, failures were surfaced via error handling. Please propagate or at least log these errors instead of ignoring them.

Useful? React with 👍 / 👎.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant