Skip to content

Commit

Permalink
checkpoint
Browse files Browse the repository at this point in the history
Signed-off-by: Jeff Ortel <[email protected]>
  • Loading branch information
jortel committed Jul 5, 2024
1 parent 98bbbe2 commit b1a759b
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions task/manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -948,10 +948,7 @@ func (m *Manager) podEvent(pod *core.Pod) (events []Event, err error) {
// podLogs - get and store pod logs as a Files.
func (m *Manager) podLogs(pod *core.Pod) (files []*model.File, err error) {
for _, container := range pod.Status.ContainerStatuses {
if container.Started == nil {
continue
}
if !*container.Started {
if container.State.Waiting != nil {
continue
}
f, nErr := m.containerLog(pod, container.Name)
Expand Down

0 comments on commit b1a759b

Please sign in to comment.