Bound interactive telemetry shutdown - #37109
Merged
copyberry[bot] merged 1 commit intoAug 5, 2026
Merged
Conversation
## Why A stalled telemetry exporter can block shutdown indefinitely when the interactive TUI exits. ## What changed - Add `OtelProvider::shutdown_with_timeout` to run exporter shutdown on a detached thread and report completion, worker failure, or timeout. - Give interactive TUI telemetry shutdown a 500 ms time budget and warn if cleanup does not finish successfully. ## Testing - Cover successful shutdown on current-thread and multi-thread Tokio runtimes, worker creation failure, and timeout behavior. - Verify that OTLP HTTP shutdown returns on time when a collector stalls. GitOrigin-RevId: 5b5f31a841fbc5788715cb3065d522c6dafa994f
copyberry
Bot
force-pushed
the
copyberry/codex-internal-to-codex-oss/5b5f31a841fbc5788715cb3065d522c6dafa994f
branch
from
August 5, 2026 15:21
ddb6eaf to
2707dfc
Compare
copyberry
Bot
deleted the
copyberry/codex-internal-to-codex-oss/5b5f31a841fbc5788715cb3065d522c6dafa994f
branch
August 5, 2026 15:22
MichaelGer1410
temporarily deployed
to
issue-triage
August 5, 2026 15:41 — with
GitHub Actions
Inactive
MichaelGer1410
temporarily deployed
to
issue-triage
August 5, 2026 15:41 — with
GitHub Actions
Inactive
MichaelGer1410
temporarily deployed
to
issue-triage
August 5, 2026 15:41 — with
GitHub Actions
Inactive
MichaelGer1410
temporarily deployed
to
issue-triage
August 5, 2026 15:43 — with
GitHub Actions
Inactive
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Bound interactive telemetry shutdown
Why
A stalled telemetry exporter can block shutdown indefinitely when the interactive TUI exits.
What changed
OtelProvider::shutdown_with_timeoutto run exporter shutdown on a detached thread and report completion, worker failure, or timeout.Testing