1.15.3
This commit is contained in:
Родитель
4e5d02dd96
Коммит
de89d3e4c5
|
@ -1,3 +1,6 @@
|
|||
## Changes in 1.15.3
|
||||
- Bug with undefined variable during partition key refresh
|
||||
|
||||
## Changes in 1.15.2
|
||||
- Adds additional logging and hardening. This includes additional error/warn/info logs which have information about the https.agent state + all errors are now logged
|
||||
- Adds a separate watchdog timeout on https requests to handle cases where https.request/socket timeouts themselves get bogged down. This time produces a scary looking error as you'll only see it when running under too much load for a given client/app.
|
||||
|
|
|
@ -190,7 +190,7 @@ var Constants = {
|
|||
CurrentVersion: "2017-11-15",
|
||||
|
||||
SDKName: "documentdb-nodejs-sdk",
|
||||
SDKVersion: "1.15.2",
|
||||
SDKVersion: "1.15.3",
|
||||
|
||||
DefaultPrecisions: {
|
||||
DefaultNumberHashPrecision: 3,
|
||||
|
|
|
@ -96,7 +96,7 @@ var ParallelQueryExecutionContextBase = Base.defineClass(
|
|||
log.error("[_onTargetPartitionRanges] Error: %o", err);
|
||||
that.err = err;
|
||||
// release the lock
|
||||
log.debug("[_onTargetPartitionRanges] semaphore released. Count before release: %d", sem.queue.length);
|
||||
log.debug("[_onTargetPartitionRanges] semaphore released. Count before release: %d", that.sem.queue.length);
|
||||
that.sem.leave();
|
||||
return;
|
||||
}
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
"database",
|
||||
"cloud"
|
||||
],
|
||||
"version": "1.15.2",
|
||||
"version": "1.15.3",
|
||||
"author": "Microsoft Corporation",
|
||||
"main": "./index.js",
|
||||
"engine": {
|
||||
|
|
Загрузка…
Ссылка в новой задаче