This repository has been archived by the owner on Apr 20, 2019. It is now read-only.
Fixed Bug where in a pipelined request, if the response of n'th request is needed by any other request where n > 9, i.e. a single digit number, it will work as expected. #98
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Closes #97
The problem was in
internals.requestRegex
.Where the regex was:
I changed it to:
So in the previous buggy regex,
\d
was in 1 capturing regex group as the+
was outside that group.So I put
\d+
in the same capturing group.I also created a test case for the same. All test cases are working.