Paul Colomiets
Paul Colomiets
Well, I was to fast to respond. It looks like you want `edgedb project init --link` it quite a different mode of operation from the normal init, and should work...
Looks like musl build should already be available. But, feel free to submit PR to the docker setup documentation, if you see this is still useful.
It is literally what it does: 1. stops server running in background 2. Runs server in foreground 3. restarts the service back when (2) exits. This is kinda `docker attach`...
Yes. This was the plan: release a version that doesn't support that. So that `edgedb instance stop $VARIABLE` issues a warning (and errors out when `$VARIABLE` is empty). Wait for...
Well, this isn't a mistake or typo, this is how `clap` always works. Have to research why it's done so, and is it tunable. Not a priority, though.
I want this realtime, but we need a patch for rustyline for that. Perhaps https://github.com/kkawakam/rustyline/pull/235 but it's very fragile in current impl.
Yes. Currently, we're always trying to install the latest version. This should be implemented by adding an `--offline` option and/or `EDGEDB_*_OFFLINE` env var. In interactive mode, we may also try...
I'm not sure why `little_endian = true` is the default. I would say that network byte order should be default. As it's more common in storage and data transmission. I...
1. On unixes you can do just `poll` with `POLLOUT`. If OS thinks connection is down, it will return an error. I think you can achieve the same with `select`...
> I'd recommend starting with a patch to add it, and stick with a handler subclass as long as possible, on the remaining portion document what needs to change and...