Elvis Pranskevichus

Results 441 comments of Elvis Pranskevichus

Which behaviors do you intend to implement in the custom class? Anything that just makes sense to integrate directly?

Ah, this is an annoying and dubious behavior of `docker --link` that is inherited by k8s. I think we can find a way to handle this nicely without the need...

Any chance your Postgres ignores the [`intervalstyle`](https://www.postgresql.org/docs/current/runtime-config-client.html#GUC-INTERVALSTYLE) setting?

These are [specified at connection time](https://github.com/edgedb/edgedb/blob/de46a16a69bd90f6ca2b8f9a904c60cb9894b4e3/edb/server/pgcluster.py#L213-L220). What does the following output when connecting to your backend? ``` echo "set IntervalStyle = iso_8601; select '2 seconds'::interval" | psql ```

Hmm. Very odd. This could be an EdgeDB bug then. Is there any way you can provide temporary access to that backend for us to reproduce?

> @elprans it is still required to set IntervalStyle on the database, otherwise edgedb fails. Should be probably fixed I have a feeling that something is up with session-level GUC...

How does your pool initialization look like? It could be that SSL (re)negotiation is in play here.

The issue is with `insecure_dev_mode` the server DOES NOT set any password and defaults to `Trust` auth, and `EDGEDB_SERVER_PASSWORD` is only applied during first server boot on a given _BACKEND_DSN...

We're also fixing the CLI to integrate with docker-compose better: geldata/gel-cli#1521