Skip to content

Commit

Permalink
Fix invalid event filter in podsandbox
Browse files Browse the repository at this point in the history
Signed-off-by: Derek McGowan <derek@mcg.dev>
  • Loading branch information
dmcgowan authored and azr committed Aug 30, 2024
1 parent f7237d6 commit c8391aa
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 c8391aa

Please sign in to comment.