Fix invalid event filter in podsandbox

Signed-off-by: Derek McGowan <derek@mcg.dev>
This commit is contained in:
Derek McGowan 2024-03-12 18:52:44 -07:00
parent f8fbdfdd6f
commit 88421068f7
No known key found for this signature in database
GPG Key ID: F58C5D0A4405ACDB

View File

@ -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