Skip to content

Commit

Permalink
Merge pull request #9962 from dmcgowan/fix-podsandbox-exit-filter
Browse files Browse the repository at this point in the history
Fix invalid event filter in podsandbox
  • Loading branch information
dmcgowan committed Mar 13, 2024
2 parents 90ec00c + 8842106 commit c03290c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/cri/server/podsandbox/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ func init() {
eventMonitor := events.NewEventMonitor(&podSandboxEventHandler{
controller: &c,
})
eventMonitor.Subscribe(client, []string{`topic="/tasks/exit"`})
eventMonitor.Subscribe(client, []string{`topic=="/tasks/exit"`})
eventMonitor.Start()
c.eventMonitor = eventMonitor

Expand Down

0 comments on commit c03290c

Please sign in to comment.