Skip to content

docs: clarify rootless propagation trace semantics - #604

Merged
rapids-bot[bot] merged 3 commits into
release/0.7from
bbednarski/relay-608-nemo-relayv070-rc2-rootless-propagationcontext-import-starts
Jul 31, 2026
Merged

docs: clarify rootless propagation trace semantics#604
rapids-bot[bot] merged 3 commits into
release/0.7from
bbednarski/relay-608-nemo-relayv070-rc2-rootless-propagationcontext-import-starts

Conversation

@bbednarski9

@bbednarski9 bbednarski9 commented Jul 31, 2026

Copy link
Copy Markdown
Contributor

Overview

Clarify that importing a rootless Relay PropagationContext preserves Relay event parentage while its first local span intentionally starts a new OpenTelemetry trace.

  • I confirm this contribution is my own work, or I have the right to submit it under this project's license.
  • I searched existing issues and open pull requests, and this does not duplicate existing work.

Details

  • Document the rootless trace boundary on PropagationContext, capture_propagation_context(), and fork_scope_stack().
  • Clarify the same contract in the scope propagation and OpenTelemetry documentation.
  • Add focused coverage for rootless capture and fork semantics, then assert that the first local span uses its local Relay UUID for its trace and span IDs and has no OTel parent.
  • Leave runtime behavior unchanged; rooted propagation continues to synthesize the existing remote Relay-derived OTel parent.

Validation:

  • cargo fmt --all -- --check passed.
  • git diff --check passed.
  • cargo test -p nemo-relay --lib rootless_propagation_starts_a_new_otel_trace passed (1 test).

Where should the reviewer start?

Start with rootless_propagation_starts_a_new_otel_trace in crates/core/tests/unit/observability/otel_tests.rs, then review the public contract on PropagationContext in crates/core/src/api/runtime/scope_stack.rs.

Related Issues: (use one of the action keywords Closes / Fixes / Resolves / Relates to)

  • Relates to RELAY-608

Summary by CodeRabbit

  • Documentation

    • Clarified how propagation contexts and forked scopes affect Relay event parentage and OpenTelemetry trace continuity.
    • Documented behavior for rooted and rootless propagation, including local trace creation.
    • Added guidance for carrying W3C traceparent and tracestate alongside Relay propagation.
  • Tests

    • Added coverage verifying rootless propagation creates a local trace while preserving the propagated parent relationship.

Document that rootless contexts preserve Relay event parentage while starting a new OpenTelemetry trace. Add focused coverage for the exported root span identity and empty parent.

Signed-off-by: Bryan Bednarski <bbednarski@nvidia.com>
@bbednarski9
bbednarski9 requested review from a team as code owners July 31, 2026 17:38
@github-actions github-actions Bot added size:S PR is small Documentation documentation-related lang:rust PR changes/introduces Rust code labels Jul 31, 2026
@coderabbitai

coderabbitai Bot commented Jul 31, 2026

Copy link
Copy Markdown

Review Change Stack

Walkthrough

The change documents rootless Relay propagation and OpenTelemetry trace behavior. It adds a regression test that verifies rootless propagation creates a new local root trace.

Changes

Rootless OpenTelemetry propagation

Layer / File(s) Summary
Document rootless propagation semantics
crates/core/src/api/runtime/scope_stack.rs, docs/about-nemo-relay/concepts/scopes.mdx, docs/configure-plugins/observability/opentelemetry.mdx
Documentation explains Relay parentage preservation, local trace creation without root_uuid, rooted propagation, and W3C trace context fields.
Validate local trace creation
crates/core/tests/unit/observability/otel_tests.rs
A regression test verifies that rootless propagation produces one local root span with local trace and span IDs, no parent span, and a non-remote parent status.

Estimated code review effort: 2 (Simple) | ~10 minutes

Possibly related PRs

  • NVIDIA/NeMo-Relay#589: Introduces the fork_scope_stack and propagation behavior extended and documented by this change.
🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
Title check ✅ Passed The title uses the valid docs type, an imperative summary, correct punctuation, and stays under 72 characters.
Description check ✅ Passed The description includes all required sections, explains the changes, identifies review starting points, and references a related issue.
✨ Finishing Touches
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch bbednarski/relay-608-nemo-relayv070-rc2-rootless-propagationcontext-import-starts

Comment @coderabbitai help to get the list of available commands.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Actionable comments posted: 2

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@crates/core/src/api/runtime/scope_stack.rs`:
- Around line 43-51: Update the documentation for PropagationContext’s missing
root_uuid behavior to state that importing via ScopeStack::from_propagation
preserves Relay parentage and starts a new OpenTelemetry trace at the first
local span after import, rather than implying the trace starts during import.

In `@crates/core/tests/unit/observability/otel_tests.rs`:
- Around line 381-404: Extend the test around the imported stack created by
create_scope_stack_from_propagation to assert capture_propagation_context()
returns root_uuid: None while retaining parent_uuid. Also exercise
fork_scope_stack() with this rootless imported stack and assert the fork
preserves root_uuid() as None and keeps the expected top().uuid.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Enterprise

Run ID: 594c13d7-933b-41b8-a9ef-009869512cca

📥 Commits

Reviewing files that changed from the base of the PR and between 262337e and 4d78391.

📒 Files selected for processing (4)
  • crates/core/src/api/runtime/scope_stack.rs
  • crates/core/tests/unit/observability/otel_tests.rs
  • docs/about-nemo-relay/concepts/scopes.mdx
  • docs/configure-plugins/observability/opentelemetry.mdx
📜 Review details
🧰 Additional context used
📓 Path-based instructions (24)
**/*.rs

📄 CodeRabbit inference engine (.agents/skills/prepare-pr/SKILL.md)

**/*.rs: Any Rust change must run just test-rust
Any Rust change must run cargo fmt --all
Any Rust change must run cargo clippy --workspace --all-targets -- -D warnings

**/*.rs: Run cargo fmt --all for all FFI work since it is Rust work
Run just test-rust to validate FFI changes
Run cargo clippy --workspace --all-targets -- -D warnings to enforce strict linting on FFI work

When Rust files changed as part of Go work, also run cargo fmt --all, just test-rust, and cargo clippy --workspace --all-targets -- -D warnings

**/*.rs: Run cargo fmt --all when Rust files are changed as part of Node work
Run cargo clippy --workspace --all-targets -- -D warnings when Rust files are changed as part of Node work
Run just test-rust when Rust files are changed as part of Node work

When changing the core Rust runtime or Rust-facing API surface, format Rust code with cargo fmt (rustfmt defaults), keep cargo clippy -- -D warnings clean, and satisfy cargo deny check per deny.toml.

**/*.rs: If any Rust code changed, always run just test-rust.
If any Rust code changed, also run cargo fmt --all.
If any Rust code changed, also run cargo clippy --workspace --all-targets -- -D warnings.
For Rust changes headed for review, run cargo fmt --all and cargo clippy --workspace --all-targets -- -D warnings even if relying on pre-commit.

Files:

  • crates/core/tests/unit/observability/otel_tests.rs
  • crates/core/src/api/runtime/scope_stack.rs
{crates/core,crates/adaptive}/**/*

📄 CodeRabbit inference engine (.agents/skills/prepare-pr/SKILL.md)

Changes to crates/core or crates/adaptive must run the full language matrix

Files:

  • crates/core/tests/unit/observability/otel_tests.rs
  • crates/core/src/api/runtime/scope_stack.rs
crates/core/**/*.rs

📄 CodeRabbit inference engine (.agents/skills/test-go-binding/SKILL.md)

If the change touched crates/core or shared runtime semantics, also use validate-change for broader validation

Files:

  • crates/core/tests/unit/observability/otel_tests.rs
  • crates/core/src/api/runtime/scope_stack.rs
**/*.{rs,py}

📄 CodeRabbit inference engine (AGENTS.md)

Follow binding naming conventions in Rust and Python: use snake_case.

Files:

  • crates/core/tests/unit/observability/otel_tests.rs
  • crates/core/src/api/runtime/scope_stack.rs
**/*.{rs,py,js,mjs,cjs,ts,tsx}

📄 CodeRabbit inference engine (AGENTS.md)

**/*.{rs,py,js,mjs,cjs,ts,tsx}: Use Json = serde_json::Value in Rust-facing runtime APIs where the existing code expects JSON payloads.
Use Result<T> with FlowError in core runtime paths, and keep errors explicit and binding-appropriate at the wrapper layer.
Keep async behavior on the existing tokio-based model; bindings should preserve callback and future lifetimes rather than blocking or hiding async work unexpectedly.

Files:

  • crates/core/tests/unit/observability/otel_tests.rs
  • crates/core/src/api/runtime/scope_stack.rs
**/*.{rs,py,go,js,ts,c,h}

📄 CodeRabbit inference engine (CONTRIBUTING.md)

Use language-appropriate naming conventions: Rust snake_case, C FFI exports prefixed nemo_relay_, Go PascalCase, Node.js camelCase, and Python snake_case.

Files:

  • crates/core/tests/unit/observability/otel_tests.rs
  • crates/core/src/api/runtime/scope_stack.rs
**/*.{rs,go,js,ts}

📄 CodeRabbit inference engine (CONTRIBUTING.md)

Add the SPDX license header to all Rust, Go, JavaScript, and TypeScript source files using the corresponding // comment form.

Files:

  • crates/core/tests/unit/observability/otel_tests.rs
  • crates/core/src/api/runtime/scope_stack.rs
**/*

📄 CodeRabbit inference engine (.agents/skills/validate-change/SKILL.md)

**/*: Format changed files with the language-native formatter before the final lint/test pass.
If dynamic plugin behavior changed, use maintain-dynamic-plugins and include the native SDK, worker protocol, Python SDK, docs, packaging, and Codecov surfaces in the validation plan.
If code changes alter APIs, bindings, commands, paths, packaging behavior, observability/adaptive semantics, or documented best practices, update any dependent maintainer or consumer skills in the same branch.
During iteration, prefer uv run pre-commit run --files <changed files...>.
Before review or handoff, run uv run pre-commit run --all-files.

Files:

  • crates/core/tests/unit/observability/otel_tests.rs
  • docs/about-nemo-relay/concepts/scopes.mdx
  • crates/core/src/api/runtime/scope_stack.rs
  • docs/configure-plugins/observability/opentelemetry.mdx
crates/{core,adaptive}/**/*

📄 CodeRabbit inference engine (.agents/skills/validate-change/SKILL.md)

If crates/core or crates/adaptive changed, run the full validation matrix across Rust, Python, Go, and Node.js.

Files:

  • crates/core/tests/unit/observability/otel_tests.rs
  • crates/core/src/api/runtime/scope_stack.rs
**/*.{rs,py,go,js,ts}

📄 CodeRabbit inference engine (.agents/skills/validate-change/SKILL.md)

If a language surface changed, always run that language's test target even when Rust core did not change.

**/*.{rs,py,go,js,ts}: When observability configuration or lifecycle is exposed, keep FFI and Python, Go, and Node.js binding-native config objects and subscriber/exporter methods aligned in logical knobs and semantics.
Require every OpenTelemetry endpoint to have a type and nonblank destination; resolve header_env values at activation and reject missing, blank, or duplicate headers.
Concatenate layered ATOF sink, ATIF storage, and OpenTelemetry endpoint lists with higher-precedence entries first.
Preserve correct handling of mark events, start/end events, orphan cases, and span or trajectory fields derived from intended event data.
Run affected Rust tests and just test-rust when event fields change; run just test-python, just test-go, and just test-node when binding-native configuration or lifecycle changes.

Files:

  • crates/core/tests/unit/observability/otel_tests.rs
  • crates/core/src/api/runtime/scope_stack.rs
**/*.{rs,py,js,ts,tsx,go,java,kt,swift}

📄 CodeRabbit inference engine (.agents/skills/add-middleware/SKILL.md)

Add tests covering registration and duplicate names, deregistration and missing names, priority ordering, callback failure policy, scope-local inheritance and cleanup, event payload semantics, immutable mark and scope fields, and parity across affected bindings.

Files:

  • crates/core/tests/unit/observability/otel_tests.rs
  • crates/core/src/api/runtime/scope_stack.rs
crates/{core,adaptive}/**/*.rs

⚙️ CodeRabbit configuration file

crates/{core,adaptive}/**/*.rs: Review the Rust runtime for async correctness, scope isolation, middleware ordering, and event lifecycle regressions.
Pay close attention to task-local/thread-local scope propagation, callback lifetimes, stream finalization, and root_uuid isolation.
Public API changes should preserve existing behavior unless tests and docs show the intended migration path.

Files:

  • crates/core/tests/unit/observability/otel_tests.rs
  • crates/core/src/api/runtime/scope_stack.rs
{crates/**/tests/**,python/tests/**,go/nemo_relay/**/*_test.go}

⚙️ CodeRabbit configuration file

{crates/**/tests/**,python/tests/**,go/nemo_relay/**/*_test.go}: Tests should cover the behavior promised by the changed API surface, including error paths and cross-request isolation where relevant.
Prefer assertions on lifecycle events, scope stacks, middleware ordering, and binding parity over shallow smoke tests.

Files:

  • crates/core/tests/unit/observability/otel_tests.rs
**/*.mdx

📄 CodeRabbit inference engine (.agents/skills/review-doc-style/SKILL.md)

MDX top-of-file SPDX comments must use {/* ... */} delimiters instead of HTML comment delimiters (Must-Fix)

In MDX files, top-of-file comments must use JSX comment delimiters ({/* to open and */} to close); do not use HTML comments for MDX SPDX headers

Files:

  • docs/about-nemo-relay/concepts/scopes.mdx
  • docs/configure-plugins/observability/opentelemetry.mdx
**/*.{md,mdx}

📄 CodeRabbit inference engine (AGENTS.md)

Update README.md, fern/, package READMEs, and binding-support notes when public behavior, package names, examples, or supported bindings change.

**/*.{md,mdx}: Prefer the documented public API, not internal shortcuts
Keep package names, repo references, and build commands current
Keep release-process and release-notes guidance in repo-maintainer docs such as RELEASING.md, not as user-facing docs pages or CHANGELOG.md
Keep stable user-facing wrappers at scripts/ root in docs and examples; only point at namespaced helper paths when documenting internal maintenance work
When detailed dynamic plugin guides exist, keep Rust native plugin examples, Python worker plugin examples, and grpc-v1 protocol details on separate pages

If links in documentation change, run just docs-linkcheck.

Files:

  • docs/about-nemo-relay/concepts/scopes.mdx
  • docs/configure-plugins/observability/opentelemetry.mdx
**/*.{md,markdown,mdx}

📄 CodeRabbit inference engine (CONTRIBUTING.md)

Add the SPDX license header to all Markdown/MDX documentation files using the HTML comment block form.

Files:

  • docs/about-nemo-relay/concepts/scopes.mdx
  • docs/configure-plugins/observability/opentelemetry.mdx
{docs,examples}/**/*

📄 CodeRabbit inference engine (.agents/skills/rename-surfaces/SKILL.md)

Update docs and examples.

Files:

  • docs/about-nemo-relay/concepts/scopes.mdx
  • docs/configure-plugins/observability/opentelemetry.mdx
docs/**/*

📄 CodeRabbit inference engine (.agents/skills/validate-change/SKILL.md)

If documentation examples or commands under docs/ change, run the targeted docs checks appropriate to the change.

Files:

  • docs/about-nemo-relay/concepts/scopes.mdx
  • docs/configure-plugins/observability/opentelemetry.mdx
**/*.{md,mdx,py,go,js,ts}

📄 CodeRabbit inference engine (.agents/skills/maintain-observability/SKILL.md)

Examples and documentation must use each exporter's documented flush/deregister order before shutdown.

Files:

  • docs/about-nemo-relay/concepts/scopes.mdx
  • docs/configure-plugins/observability/opentelemetry.mdx
{docs/**,README.md,CONTRIBUTING.md,RELEASING.md,SECURITY.md}

⚙️ CodeRabbit configuration file

{docs/**,README.md,CONTRIBUTING.md,RELEASING.md,SECURITY.md}: Review documentation for technical accuracy against the current API, command correctness, and consistency across language bindings.
Flag stale examples, missing SPDX headers where required, and instructions that no longer match CI or pre-commit behavior.

Files:

  • docs/about-nemo-relay/concepts/scopes.mdx
  • docs/configure-plugins/observability/opentelemetry.mdx
crates/core/src/{api/**/*.rs,api/runtime/**/*.rs,codec/**/*.rs,json.rs}

📄 CodeRabbit inference engine (.agents/skills/add-binding-feature/SKILL.md)

Implement the new or changed public runtime behavior first in the Rust core, especially under crates/core/src/api/ and related core modules such as crates/core/src/api/runtime/, crates/core/src/codec/, and crates/core/src/json.rs.

Files:

  • crates/core/src/api/runtime/scope_stack.rs
{crates/**/src/**/*.rs,python/**/*.py}

📄 CodeRabbit inference engine (.agents/skills/maintain-dynamic-plugins/SKILL.md)

Do not add tests under src; Rust tests belong in crate tests/ trees, and Python SDK tests belong under python/tests.

Files:

  • crates/core/src/api/runtime/scope_stack.rs
crates/core/src/api/**/*.rs

📄 CodeRabbit inference engine (.agents/skills/add-middleware/SKILL.md)

Preserve the documented pipeline order: conditional guardrails, request intercepts, request sanitization, execution intercepts, and response sanitization for tool and LLM execution; specialized sanitization, event creation, and dispatch for mark and scope events.

Files:

  • crates/core/src/api/runtime/scope_stack.rs
docs/{about-nemo-relay/concepts/subscribers.mdx,configure-plugins/observability/**/*.mdx}

📄 CodeRabbit inference engine (.agents/skills/maintain-observability/SKILL.md)

Update observability documentation and examples alongside implementation changes, including configuration version 3 with one opentelemetry section containing typed endpoints and no standalone public OpenInference surface.

Files:

  • docs/configure-plugins/observability/opentelemetry.mdx
🧠 Learnings (3)
📚 Learning: 2026-07-28T03:31:05.964Z
Learnt from: willkill07
Repo: NVIDIA/NeMo-Relay PR: 564
File: crates/core/src/api/runtime/subscriber_dispatcher.rs:297-314
Timestamp: 2026-07-28T03:31:05.964Z
Learning: In this codebase’s runtime API, do not implement incremental native LLM stream forwarding via the native ABI v3 asynchronous middleware protocol (it can only settle a single JSON value via a one-shot completion handle and cannot forward stream chunks incrementally). If a latency-sensitive plugin needs streaming behavior, review for use of synchronous native stream intercepts or worker plugins instead of trying to chunk-deliver or incrementally forward over the ABI v3 async path.

Applied to files:

  • crates/core/src/api/runtime/scope_stack.rs
📚 Learning: 2026-07-28T20:07:29.880Z
Learnt from: willkill07
Repo: NVIDIA/NeMo-Relay PR: 571
File: crates/core/src/api/runtime/state.rs:996-1020
Timestamp: 2026-07-28T20:07:29.880Z
Learning: In NeMo Relay (RELAY-509), sanitizer callback failures must be treated as intentional fail-open behavior. When an event/tool (request/response) or LLM (request/response) sanitizer callback fails, the sanitizer chain should retain and publish the last valid event/payload snapshot (rather than dropping/invalidating the data) and log the failure including callback context (e.g., which sanitizer/callback failed and relevant identifiers). Apply this consistently across all sanitizer chains mentioned in the RELAY-509 documentation/migration guide.

Applied to files:

  • crates/core/src/api/runtime/scope_stack.rs
📚 Learning: 2026-07-14T02:53:59.997Z
Learnt from: willkill07
Repo: NVIDIA/NeMo-Relay PR: 415
File: docs/configure-plugins/observability/opentelemetry.mdx:98-113
Timestamp: 2026-07-14T02:53:59.997Z
Learning: In NeMo-Relay’s OpenTelemetry/OpenInference observability projection docs under docs/configure-plugins/observability/, document the projected-attribute contract as follows: (1) emit scalar top-level `data`/`metadata` fields as typed dotted OTLP attributes (for example, `nemo_relay.start.metadata.tenant`); (2) keep nested objects/arrays as JSON strings at their top-level OTLP attribute (rather than expanding them into nested OTLP attributes); and (3) do not reference the legacy `*_json` payload attributes (e.g., `data_json`, `metadata_json`, `input_json`) because they were intentionally removed as a breaking change.

Applied to files:

  • docs/configure-plugins/observability/opentelemetry.mdx
🔇 Additional comments (4)
crates/core/src/api/runtime/scope_stack.rs (2)

447-449: LGTM!


470-474: 📐 Maintainability & Code Quality

Complete the required Rust/core validation before handoff.

The supplied summary says that the focused Rust test reached code generation but could not complete linking because the disk ran out of space. Treat this result as incomplete. After freeing disk space, run just test-rust, cargo fmt --all, cargo clippy --workspace --all-targets -- -D warnings, validate-change, just test-python, just test-go, just test-node, and uv run pre-commit run --all-files.

As per coding guidelines, Rust changes require the Rust checks, crates/core changes require validate-change and the full language matrix, and handoff requires the all-files pre-commit pass.

Source: Coding guidelines

docs/about-nemo-relay/concepts/scopes.mdx (1)

150-151: LGTM!

Also applies to: 219-224

docs/configure-plugins/observability/opentelemetry.mdx (1)

32-36: 📐 Maintainability & Code Quality

Clarify W3C context precedence for rootless propagation.

The paragraph says that rootless Relay propagation starts a new OpenTelemetry trace and also recommends carrying traceparent and tracestate. A W3C traceparent normally identifies an existing remote parent. State whether integrations must ignore that parent for Relay-derived spans, use the fields only for sampling or vendor state, or let W3C extraction override the rootless rule.

As per path instructions, documentation must be technically accurate against the current API and consistent across language bindings.

Source: Path instructions

Comment thread crates/core/src/api/runtime/scope_stack.rs Outdated
Comment thread crates/core/tests/unit/observability/otel_tests.rs
@github-actions

Copy link
Copy Markdown

@codecov

codecov Bot commented Jul 31, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 92.82%. Comparing base (72c011b) to head (74d3c4d).
⚠️ Report is 1 commits behind head on release/0.7.

❌ Your project check has failed because the head coverage (94.07%) is below the target coverage (95.00%). You can increase the head coverage or adjust the target coverage.

Additional details and impacted files
@@               Coverage Diff               @@
##           release/0.7     #604      +/-   ##
===============================================
- Coverage        92.83%   92.82%   -0.01%     
===============================================
  Files              326      326              
  Lines            95101    95101              
  Branches           113      113              
===============================================
- Hits             88278    88271       -7     
- Misses            6823     6829       +6     
- Partials             0        1       +1     
Components Coverage Δ
Rust Runtime 94.07% <ø> (ø)
Shared DTO Types 99.05% <ø> (ø)
CLI 90.02% <ø> (-<0.01%) ⬇️
Go Binding 95.26% <ø> (ø)
Python Binding 95.01% <ø> (-0.03%) ⬇️
Node Binding 98.01% <ø> (-0.35%) ⬇️
Dynamic Plugin SDKs 96.46% <ø> (ø)
Files with missing lines Coverage Δ
crates/core/src/api/runtime/scope_stack.rs 98.73% <ø> (ø)

... and 6 files with indirect coverage changes


Continue to review full report in Codecov by Harness.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 262337e...74d3c4d. Read the comment docs.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@bbednarski9 bbednarski9 added this to the 0.7 milestone Jul 31, 2026
Signed-off-by: Bryan Bednarski <bbednarski@nvidia.com>

@afourniernv afourniernv left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

LGTM

Signed-off-by: Bryan Bednarski <bbednarski@nvidia.com>
@bbednarski9

Copy link
Copy Markdown
Contributor Author

/merge

@rapids-bot
rapids-bot Bot merged commit b3af8cc into release/0.7 Jul 31, 2026
82 of 83 checks passed
@willkill07
willkill07 deleted the bbednarski/relay-608-nemo-relayv070-rc2-rootless-propagationcontext-import-starts branch August 1, 2026 01:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Documentation documentation-related lang:rust PR changes/introduces Rust code size:S PR is small

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants