At this line you are using the pattern QuoteResponse*. You probably intended QuoteResponse.*. QuoteResponse* means QuoteRespons followed by e zero or more times. If EventFilter.info took a glob pattern it would have the intended meaning, but since it takes a regex the pattern should be QuoteResponse.*
Great examples, by the way. Thanks!
At this line you are using the pattern
QuoteResponse*. You probably intendedQuoteResponse.*.QuoteResponse*meansQuoteResponsfollowed byezero or more times. IfEventFilter.infotook a glob pattern it would have the intended meaning, but since it takes a regex the pattern should beQuoteResponse.*Great examples, by the way. Thanks!