-
-
Notifications
You must be signed in to change notification settings - Fork 779
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
[BUG] - Migration from V1.3.2 to V1.4.0 #3423
Comments
I'm having this same issue but I don't have a |
You might need to URL encode some special characters, e.g.: https://stackoverflow.com/questions/23353623/how-to-handle-special-characters-in-the-password-of-a-postgresql-url-connection |
URL encoding the whole password didn't work ("bad password") so I suspect its specific characters :( |
Based on the log message (which prints out the password 😬) it looks like at the point its failing the password has been url-encoded already as I see all spacial characters replaced in the postgres URL. The URL, with encoding, is valid when I use it with psql. Interestingly, if I put in a bad password I get a log error saying the password is incorrect but if I use the correct one I get this interpolation issue. So I guess in the code it first does successfully use the password to connect to the database but there's a problem in the migration part perhaps? |
Hmm, it's possible that the URL encoded password is invalid somehow (i.e. one of the characters that's getting URL encoded creates a string postgres doesn't like). I believe someone is looking into a PR to fix the issue in general, though. In the meantime, I would recommend changing your postgres password, or staying on 1.3 until we're able to fix it. |
I changed my password and removed any special characters that required URL encoding (things like |
First Check
What is the issue you are experiencing?
After migrate my container from v1.3.2 to V1.4.0, service doesn't boot. Sql error on data migration
Back to V1.3.2 successfully...
Steps to Reproduce
Container is installed in kubernetes cluster
Update manifest (container tag: v1.4.0)
Worker download image
Worker start image
Crash
Worker rollback
Service up (v1.3.2)
Please provide relevant logs
Mealie Version
hkotel/mealie:v1.4.0-arm64
Deployment
Docker (Linux)
Additional Deployment Details
Posgresql V16.2-1
The text was updated successfully, but these errors were encountered: