You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
we are getting StackOverflow bug where curl has a big payload for the post & put commands.
after debugging found that line 44 in ReadArguments.class is throwing the error
where it's finding regex pattern for Body ie -d {}.
The text was updated successfully, but these errors were encountered:
Thanks for the feedback and for appreciating this lib.
Java impl for parsing regexs is using recursion to such an extend that we frequently notice stackoverflow errors.
What I tried to do was to make a powerful regex that is able to parse both simple quotes and double quotes.
I have no idea how to improve the regex without degrading it.
Instead, I implemented a placeholder feature to write text that will not be catched by the regex matcher.
Describe the bug
we are getting StackOverflow bug where curl has a big payload for the post & put commands.
after debugging found that line 44 in ReadArguments.class is throwing the error
where it's finding regex pattern for Body ie -d {}.
The text was updated successfully, but these errors were encountered: