@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
@@ -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.146",
39
+ "gitHead": "e3342c954363d0faf92cc667790014d313668580"
40
40
  }