-
-
Notifications
You must be signed in to change notification settings - Fork 347
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Flycheck problem with 1.16.3 on Docker #587
Comments
Hmm, it seems like the crash could actually be related to this log line:
|
Yeah, bug confirmed, the |
This is weird. sslmode=prefer is the default in PostgreSQL (see doc). We're just stating the obvious here. Anyway, can you try to add the following environment variable, just to verify if the problem is really the sslmode: |
Yes, this does the trick... |
same here.. not with BTW https://www.elephantsql.com/docs/faq.html#Does_ElephantSQL_support_TLS_SSL suggests this:
As far as I understand, I can't override the JDBC URL from the environment variables?
Confirming, that's a valid workaround, but that's insecure, agreed? So perhaps this |
ok but that was not intended as a workaround. :-) @vorburger: ssl=true is not as fine grained as ssl_mode, at least not for the JDBC driver, see https://jdbc.postgresql.org/. So I think we should investigate in other directions I think that the real issue here is the default postgres docker image config. have you tried with ssl_mode=allow ? Does it work? (see doc) another option would be to create a certificate and then configure it, see https://gist.github.com/mrw34/c97bb03ea1054afb551886ffc8b63c3b . I think that https://github.com/FiloSottile/mkcert can be of help here. |
closed for inactivity |
Describe the bug
Running the 1.16.3 with the same
docker-compose.yml
file as 1.16.1 crasehs with:To Reproduce
Steps to reproduce the behavior:
docker-compose up
with this fileExpected behavior
No crash
The text was updated successfully, but these errors were encountered: