@nocobase/database 1.8.24 → 1.8.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/database.js +1 -1
- package/package.json +4 -4
package/lib/database.js
CHANGED
|
@@ -612,7 +612,7 @@ const _Database = class _Database extends import_events.EventEmitter {
|
|
|
612
612
|
/* istanbul ignore next -- @preserve */
|
|
613
613
|
async auth(options = {}) {
|
|
614
614
|
const { retry = 9, ...others } = options;
|
|
615
|
-
const startingDelay =
|
|
615
|
+
const startingDelay = 200;
|
|
616
616
|
const timeMultiple = 2;
|
|
617
617
|
let attemptNumber = 1;
|
|
618
618
|
const authenticate = /* @__PURE__ */ __name(async () => {
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nocobase/database",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.25",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"types": "./lib/index.d.ts",
|
|
7
7
|
"license": "AGPL-3.0",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@nocobase/logger": "1.8.
|
|
10
|
-
"@nocobase/utils": "1.8.
|
|
9
|
+
"@nocobase/logger": "1.8.25",
|
|
10
|
+
"@nocobase/utils": "1.8.25",
|
|
11
11
|
"async-mutex": "^0.3.2",
|
|
12
12
|
"chalk": "^4.1.1",
|
|
13
13
|
"cron-parser": "4.4.0",
|
|
@@ -38,5 +38,5 @@
|
|
|
38
38
|
"url": "git+https://github.com/nocobase/nocobase.git",
|
|
39
39
|
"directory": "packages/database"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "a2fdd2e7b6242b82c312dc6c3c90670fec2c9a1c"
|
|
42
42
|
}
|