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
Fix TTL parsing when driver configured to use JS numbers
Driver can be created with `{disableLosslessIntegers: true}` config.
Then all integer numbers returned in query results will be `Number`
instead of `neo4j.Integer`.
Routing table response parsing code did not expect `Number`s and failed
to parse the TTL entry. This commit fixes parsing by always wrapping
returned value of TTL in a `neo4j.Integer`.
Also improved error messages around routing response parsing to include
the original error message.
0 commit comments