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
Please ensure the following information is supplied for new issues:
Riak Node.js Client version
2.4.0
Node.js version
6.11.3
Riak version
Unknown
Operating System / Distribution & Version
MAC
Riak error.log file, if applicable
What commands were being executed during the error
Search.prototype.onSuccess = function(rpbSearchQueryResp)
What you expected to have happen
We can't get whole string if it's start with number. For example 123abc, we get 123 when executing search.
Root cause is we need to check it's a whole number or not first.
The method is "function maybeIsNumber(n)" in utils.js.
Please see my pull request. Fix string start with number issue #188
Please ensure the following information is supplied for new issues:
2.4.0
6.11.3
Unknown
MAC
error.logfile, if applicableSearch.prototype.onSuccess = function(rpbSearchQueryResp)
We can't get whole string if it's start with number. For example 123abc, we get 123 when executing search.
Root cause is we need to check it's a whole number or not first.
The method is "function maybeIsNumber(n)" in utils.js.
Please see my pull request. Fix string start with number issue #188
Thank you!