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

[Issue 2665] Add temp logging to help troubleshoot db connection failures #2816

Merged
merged 5 commits into from
Nov 13, 2024

Conversation

DavidDudas-Intuitial
Copy link
Collaborator

@DavidDudas-Intuitial DavidDudas-Intuitial commented Nov 12, 2024

Summary

Partially Fixes #2665

Time to review: 1 min

Changes proposed

What was added, updated, or removed in this PR.

Added sslmode to Postgres connection string. Also added some temporary logging to help troubleshoot db connection failures from analytics code. I will remove the logging in a future PR, as soon as I find the cause of the db connection failures.

Context for reviewers

Testing instructions, background context, more in-depth details of the implementation, and anything else you'd like to call out or ask reviewers. Explain how the changes were verified.

Analytics step functions have been deployed but when they execute their attempted connections to Postgres always fail.

Additional information

Screenshots, GIF demos, code examples or output to help show the changes working as expected.

@@ -25,11 +25,15 @@ def get_db() -> Engine:
db = get_db_settings()
# inspired by simpler-grants-gov/blob/main/api/src/adapters/db/clients/postgres_client.py
token = db.password if db.local_env is True else generate_iam_auth_token(db)
url = f"postgresql+psycopg://{db.user}:{token}@{db.db_host}:{db.port}?sslmode={db.ssl_mode}"
print(f"TEMP DEBUG: db settings = {db}")
print(f"TEMP DEBUG: token = {token}")
Copy link
Collaborator

Choose a reason for hiding this comment

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

Suggested change
print(f"TEMP DEBUG: token = {token}")

We can't have this in the logs, even if it's temporary

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

@coilysiren ok, I removed it

coilysiren
coilysiren previously approved these changes Nov 12, 2024
@DavidDudas-Intuitial DavidDudas-Intuitial merged commit 7f943c5 into main Nov 13, 2024
11 checks passed
@DavidDudas-Intuitial DavidDudas-Intuitial deleted the issue-2665-troubleshoot-db-connection branch November 13, 2024 00:39
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.

Load GitHub data into Postgres
2 participants