feat: Inband attestation should collect stderr from nvattest sdk#228
Merged
Conversation
Signed-off-by: ambermingxin <ambermingxin@nvidia.com>
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Enterprise Run ID: 📒 Files selected for processing (1)
💤 Files with no reviewable changes (1)
📝 WalkthroughWalkthroughModifies the attestation collector to append raw stderr to the CLI result message, with the test updated to match the new message format. ChangesAttestation Collector Updates
Estimated code review effort: 1 (Trivial) | ~3 minutes 🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
Comment |
There was a problem hiding this comment.
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 `@internal/attestation/collector.go`:
- Line 95: The `collector.go` success logging is redundant because
`log.Logger.Infow` already records the summary fields from `response`; remove
the full `response` dump or move it behind a debug-level log. Keep the existing
`result_code`, `result_message`, and `evidences_count` logging, and avoid
logging the `Evidences` payload in `nvattest`-related collection flow.
- Around line 84-85: The attestation collector is unconditionally appending
stderr into response.ResultMessage, which leaks into backend resultMessage for
every run. Update the collector logic in the attestation flow to only include
stderr when stderr.String() is non-empty and when it belongs in an error/context
path, not the primary success ResultMessage. Use the collector’s SDKResponse
assignment in manager.go and the mapping in toAttestationRequest as the
references to keep the success payload clean.
🪄 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: CHILL
Plan: Enterprise
Run ID: 4fb72c91-a82a-4465-ad62-312926aead1c
📒 Files selected for processing (1)
internal/attestation/collector.go
Signed-off-by: ambermingxin <ambermingxin@nvidia.com>
jingyu-nvidia
approved these changes
Jul 2, 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.
Description
Checklist
Summary by CodeRabbit