Dan Rosart

Results 70 comments of Dan Rosart

Given that it seems to be a race condition, it's possible that it's performance-based. I could try using `Meteor._sleepForMs` instead of the 20 subscriptions to the same table to see...

Uploaded a new version. If I replace the repeated subscriptions with a single one that does `Meteor._sleepForMs(10)` I still got the behavior consistently; if I take out the sleep, it...

If more data points helps, I think https://github.com/Torgen/codex-blackboard also has this issue. The coveralls site shows the aggregated coverage, but the comment and check result show the lowest single sub-result...

Is this believed to be fixed in 3.0.1? I'm still having this issue in a test that imports a top-level-await module, but at least the workaround of awaiting without assigning...

One issue with IndexedDB is that data has a same origin policy, so if you have multiple tabs open all tabs can see data from all other tabs. This means...

FYI, Meteor 1.8 comes with MongoDB 4.0, a side effect of which is that checks for duplicate key errors may have to check for BulkWriteError in addition to MongoError.

Note that messages appear in the order they were posted, not the order they were starred. The catch with the latter is I might need to interleave between oldmessages and...

I didn't add tests for the bot commands because it turns out Hubot expects bot callbacks to be synchronous, and ours are coroutines, so you can't use the receive callback...

This also makes some progress on #314 by splitting the server startup and batch code out of lib/model.coffee, though it does still contain both the collections and the methods.

If you pull #310 first, wait to pull this until I add back the tests for setStarred. If you pull this first, wait to pull that for the same.