mirror of
https://github.com/kemko/nomad.git
synced 2026-01-01 16:05:42 +03:00
check in stderrFrame is nil before logging stderrFrame.Data (#17815)
This commit is contained in:
3
.changelog/17815.txt
Normal file
3
.changelog/17815.txt
Normal file
@@ -0,0 +1,3 @@
|
||||
```release-note:bug
|
||||
cli: Fix panic in `alloc logs` command when receiving empty stdout or stderr log frames
|
||||
```
|
||||
@@ -397,11 +397,15 @@ func (l *AllocLogsCommand) tailMultipleFiles(client *api.Client, alloc *api.Allo
|
||||
case stdoutErr := <-stdoutErrCh:
|
||||
return fmt.Errorf("received an error from stdout log stream: %v", stdoutErr)
|
||||
case stdoutFrame := <-stdoutFrames:
|
||||
logUI.Output(string(stdoutFrame.Data))
|
||||
if stdoutFrame != nil {
|
||||
logUI.Output(string(stdoutFrame.Data))
|
||||
}
|
||||
case stderrErr := <-stderrErrCh:
|
||||
return fmt.Errorf("received an error from stderr log stream: %v", stderrErr)
|
||||
case stderrFrame := <-stderrFrames:
|
||||
logUI.Warn(string(stderrFrame.Data))
|
||||
if stderrFrame != nil {
|
||||
logUI.Warn(string(stderrFrame.Data))
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user