@nxtedition/deepstream.io-client-js 24.0.15 → 24.0.16
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/package.json
CHANGED
|
@@ -260,7 +260,7 @@ class RecordHandler {
|
|
|
260
260
|
Object.assign(new Error('sync patching timeout'), { data: { patching, timeout } })
|
|
261
261
|
)
|
|
262
262
|
resolve(null)
|
|
263
|
-
}, timeout ??
|
|
263
|
+
}, timeout ?? 2 * 60e3)
|
|
264
264
|
}),
|
|
265
265
|
signalPromise,
|
|
266
266
|
]).finally(() => {
|
|
@@ -283,7 +283,7 @@ class RecordHandler {
|
|
|
283
283
|
Object.assign(new Error('sync updating timeout'), { data: { updating, timeout } })
|
|
284
284
|
)
|
|
285
285
|
resolve(null)
|
|
286
|
-
}, timeout ??
|
|
286
|
+
}, timeout ?? 2 * 60e3)
|
|
287
287
|
}),
|
|
288
288
|
signalPromise,
|
|
289
289
|
]).finally(() => {
|
|
@@ -306,7 +306,7 @@ class RecordHandler {
|
|
|
306
306
|
Object.assign(new Error('sync server timeout'), { data: { token, timeout } })
|
|
307
307
|
)
|
|
308
308
|
resolve(null)
|
|
309
|
-
}, timeout ??
|
|
309
|
+
}, timeout ?? 2 * 60e3)
|
|
310
310
|
}),
|
|
311
311
|
signalPromise,
|
|
312
312
|
]).finally(() => {
|
|
@@ -355,7 +355,7 @@ class RecordHandler {
|
|
|
355
355
|
return this._observe(
|
|
356
356
|
{
|
|
357
357
|
state: C.RECORD_STATE.SERVER,
|
|
358
|
-
timeout:
|
|
358
|
+
timeout: 2 * 60e3,
|
|
359
359
|
dataOnly: true,
|
|
360
360
|
},
|
|
361
361
|
...args
|
|
@@ -399,7 +399,7 @@ class RecordHandler {
|
|
|
399
399
|
observe2(...args) {
|
|
400
400
|
return this._observe(
|
|
401
401
|
{
|
|
402
|
-
timeout:
|
|
402
|
+
timeout: 2 * 60e3,
|
|
403
403
|
},
|
|
404
404
|
...args
|
|
405
405
|
)
|