You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: stream container stderr in real-time instead of only on failure (#621)
Container/process stderr is now streamed to logs continuously while the
process runs, rather than only being printed when the connection fails.
This helps with debugging container issues as they happen.
- Uses io.MultiWriter to capture stderr to both a buffer and a pipe
- Goroutine streams stderr lines to logs in real-time
- Buffer is still available for error reporting on failure
0 commit comments