-
-
Notifications
You must be signed in to change notification settings - Fork 79
New issue
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
Allow $
in treetop parsed strings.
#241
Conversation
Treetop was also failing one a line similar too:
Adding Please let me know if this can be pulled into master. |
Is there any chance this is related to #215 which is using the # character ? edit: adding # to the allowed characters does indeed resolve this issue. I've opened kwolf-zz#1 in the hopes it can get included - if not no worries i'll open a new one here. |
Update jboss_cli.treetop
Merged the |
I don't think that last failure was related to the code change. |
@biemond any update on possibly merging my three PR's? This is the most important one. |
Thanks. |
I'm in the process of upgrading from Puppet 3 to 4 and using this as an opportunity to upgrade to the latest wildfly module as well.
I had some parsing problems with Treetop, and the only ones I couldn't fix on our side were strings that had
$
in them. I tried quoting them, escaping them everything I could think of but couldn't get it to pass Treetop's validation.This PR allows dollar signs. I'd love to get this accepted... this is the only real reason we'll have to run our fork.
The strings I had issue with are:
/subsystem=logging/logger=com.company.common.services.DefaultCompanyPoolExecutor$UserBasedCallable:dummy /subsystem=logging/logger=com.company.common.services.DefaultCompanyThreadPoolExecutor$UserBasedRunnable:dummy
I tried this all the way up to master of the Puppet module. If I'm missing something and need to escape this differently or in a way I haven't though of, please let me know.