This is an automated email from the ASF dual-hosted git repository.
zstan pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/ignite-nodejs-thin-client.git
from 2031e68 IGNITE-18520 Await cluster start by logs in tests
add 86a7ed1 fix defects bump version to 1.1.1
add 952ce79 Fix BaseCursor _id typing and hasMore() on empty results
add bd33cba Use MessageBuffer.getSlice() helper when carving per-message
buffer
add b5e735e Warn (not silently discard) on response frame with unmatched
request id
add 28b76f3 Build per-message buffer only on the matched-request path
add 54c6032 Clarify per-message buffer comment: copy happens in
MessageBuffer.from
add 92a22d6 Fail fast on response stream desync instead of discarding the
frame
add 0fd725b Dispatch _finalizeResponse off the processing queue to avoid
deadlock
add bfcf03d Return an empty array from Cursor._getValues() on exhaustion
add ac6092a Drop the version bump from this bug-fix PR
add 85ff8ca Reject in-flight request when detached finalize throws; drop
Promise.finally in specs
new fa2a0ba Merge pull request #10 from JohnSColeman/master
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
spec/cache/ColdComplexRead.spec.js | 136 +++++++++++++++++++++++
spec/cache/ColdComplexReadDeadlock.spec.js | 171 +++++++++++++++++++++++++++++
src/Cursor.ts | 39 ++++++-
src/Errors.ts | 6 +-
src/internal/ClientSocket.ts | 111 ++++++++++++++++---
5 files changed, 439 insertions(+), 24 deletions(-)
create mode 100644 spec/cache/ColdComplexRead.spec.js
create mode 100644 spec/cache/ColdComplexReadDeadlock.spec.js