Skip to content
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

Fix bug where psql isn't ready for migration #500

Merged
merged 1 commit into from
Mar 26, 2024
Merged

Conversation

ntlind
Copy link
Contributor

@ntlind ntlind commented Mar 26, 2024

Problem

Today, calling make start-postgres-docker && make run-migrations fails with error: EOF. The issue is that postgres isn't actually ready to handle database requests when Docker opens the port; see psql issue here for more details.

Improvement

Change the wait_for_postgres command to wait until psql is actually ready to start the migration process.

Acknowledgements

Thank you to Jordan for finding the GitHub thread and solution mentioned above!

@ntlind ntlind marked this pull request as ready for review March 26, 2024 15:29
@ntlind ntlind requested review from czaloom and ekorman as code owners March 26, 2024 15:29
@@ -5,5 +5,7 @@ WORKDIR /migrations
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh

RUN apk --update add postgresql-client
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

perfect

@ntlind ntlind merged commit 8fa7dd1 into main Mar 26, 2024
10 checks passed
@ntlind ntlind deleted the fix_migration_bug branch March 26, 2024 15:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants