mirror of
https://github.com/containers/podman.git
synced 2025-06-25 20:26:51 +08:00
Merge pull request #11816 from cdoern/podEventsBug
Pod Events Logging Fix
This commit is contained in:
@ -59,6 +59,12 @@ func MakePod(p *entities.PodSpec, rt *libpod.Runtime) (*libpod.Pod, error) {
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
} else {
|
||||
// SavePod is used to save the pod state and trigger a create event even if infra is not created
|
||||
err := rt.SavePod(pod)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
}
|
||||
return pod, nil
|
||||
}
|
||||
|
@ -199,4 +199,17 @@ var _ = Describe("Podman events", func() {
|
||||
|
||||
wg.Wait()
|
||||
})
|
||||
|
||||
It("podman events pod creation", func() {
|
||||
create := podmanTest.Podman([]string{"pod", "create", "--infra=false", "--name", "foobarpod"})
|
||||
create.WaitWithDefaultTimeout()
|
||||
Expect(create).Should(Exit(0))
|
||||
id := create.OutputToString()
|
||||
result := podmanTest.Podman([]string{"events", "--stream=false", "--filter", "pod=" + id})
|
||||
result.WaitWithDefaultTimeout()
|
||||
Expect(result).Should(Exit(0))
|
||||
Expect(result.OutputToStringArray()).To(HaveLen(1))
|
||||
Expect(result.OutputToString()).To(ContainSubstring("create"))
|
||||
})
|
||||
|
||||
})
|
||||
|
Reference in New Issue
Block a user