Daniel Heath

Results 111 comments of Daniel Heath

Interesting. I'm still getting it on linux, but I'll ask the user who first reported it (on macos) to try the nightly build (unless you have a release planned soon).

Thanks. I've confirmed it's working on macos.

I've installed via `snap install mattermost-desktop` on ubuntu.

So, I have some more concrete requests here which hopefully shed some light: Firstly, if a component is re-rendered, but no DOM changes are made as a result - that's...

For latency, the problem is essentially not solvable; postgres lacks a "monotonic timestamp" function, and multi-machine clock consistency should be out of scope. If all clock calls use `CLOCK_MONOTONIC`, then...

Shouldn't be too hard to port - I just grabbed the one I already had written.

Oh, actually - the test suite will be holding an open database connection, so you can't drop/recreate the database.

Yeah, likely possible. I probably won't get to look at this in detail until... [checks calendar] early Feb

In single thread mode, you know which job caused the error, right? Harder to solve in general though.

In general, you want `abort_on_exception` to raise the exception to the _calling_ thread, not the main thread. The following monkey-patch does that: ``` module PropagateThreadErrors attr_reader :parent_thread def initialize(*thr_args, &blk)...