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