AkkaNotes_Messaging
AkkaNotes_Messaging copied to clipboard
Glob pattern used instead of regular expression
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!
Actually, come to think of if, the .*
doesn't even serve any purpose in this case; the pattern QuoteResponse
will suffice.