Evan Broder

Results 74 comments of Evan Broder

Is there any chance this is happening on requests where Scripts has to respawn an otherwise dead fastcgi?

I ran into the same issue when I was trying to follow up from #317. It's pretty easy to reproduce: ``` evan@mathias src % meteor create --minimal meteor-test [...] evan@mathias...

FWIW if you're also passing a `ref` to your styled component, then I think you can annotate the type as: ``` import React, { FC, ComponentPropsWithRef } from 'react'; import...

For the record I suspect that there's a similar issue in `observe`, but my code only uses `observeChanges` so I haven't verified that directly.

Yeah I think my main objection here is the API change. I'd really like to be able to have a project that can run under both Meteor 2 and Meteor...

I somehow missed that `observeAsync` and `observeChangesAsync` had landed in both 3.0 and 2.x, so I need to play with the API some, but that seems great. However, it does...

Oh, and just to keep everything linked together, this should work now because https://github.com/zodern/meteor-types/pull/8 has been merged and released.

It looks like automake used to use `classdist_noinst.stamp` as a flag file, and has since switched to `classnoinst.stamp`. Changing `classdist_noinst.stamp` to `classnoinst.stamp` in `src/Makefile.am` and then re-running `./autogen.sh` seems to...

What happens if you try running `go get -u github.com/stripe/safesql` (to fetch dependency updates)? We recently pushed some patches to account for interface changes in golang.org/x/tools/go/ssa/ssautil cc @ryanlower

I think this may actually be comparatively straightforward. There are oplog entries for chunk migrations (a bunch of insertions on the destination shard, and a bunch of deletions on the...