@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
@@ -35,6 +35,6 @@
35
35
  "scripts": {
36
36
  "test": "NODE_ENV=test tape tests/*"
37
37
  },
38
- "version": "0.9.146",
39
- "gitHead": "e3342c954363d0faf92cc667790014d313668580"
38
+ "version": "0.9.147",
39
+ "gitHead": "17e8644b55d23a7c727b6aba17d4c4e41bd4f236"
40
40
  }