Fix issues found by the review agent#1699
Merged
dgageot merged 3 commits intodocker:mainfrom Feb 11, 2026
Merged
Conversation
Change setupRecordingProxy to return func() error instead of swallowing errors internally, making it consistent with setupFakeProxy. Use a named return in runOrExec so deferred cleanup errors are propagated when no prior error occurred. Fixes docker#1691 Assisted-By: cagent
Fixes docker#1690 Assisted-By: cagent
Add a done channel to ensure the background goroutine that closes stdin exits cleanly when monitorStdin returns, not only when the context is cancelled. This prevents the goroutine from leaking if stdin closes before context cancellation. Fixes docker#1664 Assisted-By: cagent
There was a problem hiding this comment.
Review Summary
No bugs found in the changed code! ✅
This PR properly addresses error handling improvements:
- Changes cleanup function signatures from
func()tofunc() errorto allow proper error propagation - Adds error handling for deferred cleanup functions
- Properly logs errors when file close operations fail
- Updates tests to verify error returns
- Implements goroutine cleanup pattern to prevent leaks in
monitorStdin
All changes are technically sound and follow Go best practices.
krissetto
approved these changes
Feb 11, 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.
No description provided.