Fix event filters
Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
This commit is contained in:
parent
18a53d0374
commit
a27abc619c
1 changed files with 4 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue