@live-change/dao 0.9.145 → 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,8 @@ 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
+ console.trace("TIMEOUT WHILE WAITING FOR REQUEST")
201
202
  waiting.handler('timeout')
202
203
  this.waitingRequests.delete(msg.requestId)
203
204
  }
@@ -207,7 +208,8 @@ class Connection extends EventEmitter {
207
208
  if(req.msg.requestId === msg.requestId) {
208
209
  const req = this.requestsQueue[i]
209
210
  this.requestsQueue[i] = null
210
- console.error("TIMEOUT WHILE WAITING FOR REQUEST", msg)
211
+ console.error("TIMEOUT WHILE WAITING FOR REQUEST", msg, 'WITH SETTINGS', settings)
212
+ console.trace("TIMEOUT WHILE WAITING FOR REQUEST")
211
213
  req.handler('timeout')
212
214
  }
213
215
  }
package/package.json CHANGED
@@ -35,6 +35,6 @@
35
35
  "scripts": {
36
36
  "test": "NODE_ENV=test tape tests/*"
37
37
  },
38
- "version": "0.9.145",
39
- "gitHead": "66fc216294ca0f2ca3174e865e793a28e726f9f0"
38
+ "version": "0.9.147",
39
+ "gitHead": "17e8644b55d23a7c727b6aba17d4c4e41bd4f236"
40
40
  }