0.12.0
release with the latest changes (https://github.com/finagle/finagle-postgres/compare/v0.11.0...master)?
val finagleVersion
that you apply later elsewhere?
sbt test
and things "just work".
sbt it:test
locally behaves the same as within CI with no additional setup as well as test against multiple pgsql versions.
IntegrationSpec
against that, there are alternate approaches I suspect, but this one works without too much trouble. The end result is testing against 9, 10 and 11 locally simply through sbt test
.
query
command?
select
when the underlying query is inserting
in any case I have a new problem where for some reason I get this ChannelClosedException: ChannelException at remote address: localhost/127.0.0.1:5432. Remote Info: Upstream Address: Not Available, Upstream id: Not Available
, Downstream Address: localhost/127.0.0.1:5432, Downstream label: postgres, Trace Id: d5b4617f06faa23e.d5b4617f06faa23e<:d5b4617f06faa23e
I'm hosting a psql server locally with docker compose on 5432 port tried with the following configuration:
Postgres.Client()
.withCredentials("postgres", "pass")
.database("postgres")
.newRichClient(Config.POSTGRES_URL)