@live-change/dao 0.9.145 → 0.9.146
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.
|
@@ -198,6 +198,7 @@ class Connection extends EventEmitter {
|
|
|
198
198
|
let waiting = this.waitingRequests.get(msg.requestId)
|
|
199
199
|
if (waiting) {
|
|
200
200
|
console.error("TIMEOUT WHILE WAITING FOR REQUEST", msg)
|
|
201
|
+
console.trace("TIMEOUT WHILE WAITING FOR REQUEST")
|
|
201
202
|
waiting.handler('timeout')
|
|
202
203
|
this.waitingRequests.delete(msg.requestId)
|
|
203
204
|
}
|
|
@@ -208,6 +209,7 @@ class Connection extends EventEmitter {
|
|
|
208
209
|
const req = this.requestsQueue[i]
|
|
209
210
|
this.requestsQueue[i] = null
|
|
210
211
|
console.error("TIMEOUT WHILE WAITING FOR REQUEST", msg)
|
|
212
|
+
console.trace("TIMEOUT WHILE WAITING FOR REQUEST")
|
|
211
213
|
req.handler('timeout')
|
|
212
214
|
}
|
|
213
215
|
}
|
package/package.json
CHANGED