Skip to content

Commit

Permalink
correct the event msg of kill container
Browse files Browse the repository at this point in the history
  • Loading branch information
Pingan2017 committed Nov 21, 2018
1 parent f8983a8 commit 75d9a7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/kubelet/kuberuntime/kuberuntime_container.go
Original file line number Diff line number Diff line change
Expand Up @@ -583,7 +583,7 @@ func (m *kubeGenericRuntimeManager) killContainer(pod *v1.Pod, containerID kubec
klog.V(3).Infof("Container %q exited normally", containerID.String())
}

message := fmt.Sprintf("Killing container with id %s", containerID.String())
message := fmt.Sprintf("Killing container %s", containerID.String())
if reason != "" {
message = fmt.Sprint(message, ":", reason)
}
Expand Down

0 comments on commit 75d9a7b

Please sign in to comment.