Lars Kanis

Results 111 comments of Lars Kanis
trafficstars

@anthares Sorry for my late answer! To get the PR to a state where it can be merged, the code must be more generic and more importantly there have to...

You must configure the [authentication methods](https://www.postgresql.org/docs/14/client-authentication.html) of the server in the `pg_hba.conf` file. pg_ldap_sync is often combined with kerberos/GSSAPI or certificate authentication to avoid passwords at all, but it should...

I support this PR, hence removing the provisional code. A dedicated gem with it's own dependencies was implemented and released [here](https://github.com/fwininger/ruby-net-ldap-gss-spnego), so that #228 is fixed that way. And it's...

This issue is solved by the gem `net-ldap-gss-spnego`, so that this issue can be closed and the provisional file for gss_spnego can be removed from net-ldap gem. See #343

The [PR for binary gems for Linux](https://github.com/ged/ruby-pg/pull/551) is already in a quite good shape. The only issue is that the x86_64-linux binary segfaults on my local Ubuntu-23.10 when connecting via...

@nurse Thank you for sharing these details! I think it's best to move the discussion to bugs.ruby-lang.org where I [posted my answer](https://bugs.ruby-lang.org/issues/18605?next_issue_id=18603&prev_issue_id=18608#note-6). Maybe the title could be somewhat more generic...

@ioquatix I made some [small changes](https://github.com/larskanis/async/commit/b8b93e1c958b292ffd3b3e9421d5928cf8cd1f15) and it [seems to work](https://github.com/larskanis/async/actions/runs/3641534866/jobs/6147585448#step:4:25).

This PR currently fails with a segfault on my local machine when connecting by a TLS encrypted connection like so: ```sh $ valgrind ruby -rpg -e "PG.connect host:'localhost'" ==513704== Invalid...

Can you get a C level backtrace? It usually looks like [here](https://github.com/ged/ruby-pg/issues/486).

Both ruby versions crash on `PQisBusy`. This function has a single argument, which is the `PQconn` pointer. For me it looks like the `PQconn` was released for some reason or...