Skip to content

Commit a27abc6

Browse files
committed
Fix event filters
Signed-off-by: Michael Crosby <[email protected]>
1 parent 18a53d0 commit a27abc6

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

libcontainerd/client_daemon.go

+4-1
Original file line numberDiff line numberDiff line change
@@ -681,7 +681,10 @@ func (c *client) processEventStream(ctx context.Context) {
681681
}()
682682

683683
eventStream, err = c.remote.EventService().Subscribe(ctx, &eventsapi.SubscribeRequest{
684-
Filters: []string{"namespace==" + c.namespace + ",topic~=/tasks/.+"},
684+
Filters: []string{
685+
"namespace==" + c.namespace,
686+
"topic~=/tasks/",
687+
},
685688
}, grpc.FailFast(false))
686689
if err != nil {
687690
return

0 commit comments

Comments
 (0)