Ihor Kalnytskyi
Ihor Kalnytskyi
> Using the HTTP URL without hostname is a neat trick (I didn't know you could do that), but I'm concerned how well supported it is (no results on google...
Hey @karlhorky, `PGUSER`, `PGPASSWORD`, `PGHOST` and other `PG*` environment variables are picked by any `libpq` based client, not only `psql`. I intentionally wanted them to be unset and trigger authentication...
I'm sorry for being away so long. It does make sense that you may want to set PG* environment variables on the job level and let it be picked up...
Hey @kopax-polyconseil, Unfortunately it's not possible to set custom PostgreSQL version at the moment. One of the foundational principles of this action was to use **preinstalled** PostgreSQL binaries. The rationale...
Unfortunately this patch introduced an annoying deadlock. Since producer (i.e. `WebSocketTestSession::send`) and consumer (i.e. `WebSocketTestSession::_asgi_receive`) are running in different threads, we may hit the following situation: - Consumer enters the...
Hey @bkoelman, I was thinking about something like this, but situation is tricky. It seems GitHub is slowly abandoning idea of shipping PostgreSQL with its runner images. Neither macOS 13...
@bkoelman This is the problem I was talking about. The only workaround that comes to mind is to suggest installing PostgreSQL yourself, using `brew` on `macos-latest`, before calling this action.
Hey @chandr-andr, Thank you for the patch. Do I understand correctly that since you're working on the PostgreSQL driver, you want to make sure that the driver can properly deal...
Hey @chandr-andr, I'm sorry for being away. I have some time now to spare on open-source, so let's get to the point when we can merge this and make a...
I rebased this patch and tried to run tests in here https://github.com/ikalnytskyi/action-setup-postgres/pull/43 I'm a bit puzzled at the moment. I'd expect tests to fail yet they've passed. I've got an...