We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This parses:
rule clearVisits is active { select when pageview where url.match(re#/.*clear.*/#) noop(); fired { clear ent:foo } }
so does this:
rule clearVisits is active { select when pageview url re#/.*clear.*/# fired { clear ent:foo } }
This doesn't:
rule clearVisits is active { select when pageview where url.match(re#/.*clear.*/#) fired { clear ent:visits; } }
The text was updated successfully, but these errors were encountered:
@alexkolson created a pull request on this that didn't solve the problem. I've got tests that show this error now.
For some reason, the parser can't recognize the end of the expression after the where clause without the action.
Sorry, something went wrong.
No branches or pull requests
This parses:
so does this:
This doesn't:
The text was updated successfully, but these errors were encountered: