-
Notifications
You must be signed in to change notification settings - Fork 286
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
SSL connectivity issues #177
Comments
Ah thank you. Before |
@porsager v2.0.0-beta.6 this doesn't seem to be working as expected with the following error:
Seems like there's a typo, it should be Line 578 in e3ace38
Get the following when trying to use dbmate:
The official docs also use |
Fixes porsager#177, see comment: porsager#177 (comment)
This seems to be an issue introduced in 0cb2981 (or somewhere in
2.0.0-beta.5
) where using a URL for connecting (i.epostgres(urlHere)
) works in unexpected manners when it comes to thesslmode
query parameter.Before beta 5
postgres://user:password@host:port/db?sslmode=disable
worked just fine.On beta 5 this leads into any query rejecting with
"Server does not support SSL"
.I'm not entirely certain if this was intended but nevertheless, it is very breaking.
Interestingly enough, a work-around I found was making the
m
uppercase, so?sslMode=disable
worked fine.The text was updated successfully, but these errors were encountered: