Fix event filters
Signed-off-by: Michael Crosby <crosbymichael@gmail.com> Upstream-commit: a27abc619cc18ead61fa89f652871fac1b318658 Component: engine
This commit is contained in:
@@ -681,7 +681,10 @@ func (c *client) processEventStream(ctx context.Context) {
|
||||
}()
|
||||
|
||||
eventStream, err = c.remote.EventService().Subscribe(ctx, &eventsapi.SubscribeRequest{
|
||||
Filters: []string{"namespace==" + c.namespace + ",topic~=/tasks/.+"},
|
||||
Filters: []string{
|
||||
"namespace==" + c.namespace,
|
||||
"topic~=/tasks/",
|
||||
},
|
||||
}, grpc.FailFast(false))
|
||||
if err != nil {
|
||||
return
|
||||
|
||||
Reference in New Issue
Block a user