-
Notifications
You must be signed in to change notification settings - Fork 2
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
Added Oauth2/Keycloak configs, decorators #56
Conversation
Coverage reportClick to see where and how coverage changed
This report was generated by python-coverage-comment-action |
pyproject.toml
Outdated
"INST_DB_USER=user", | ||
"INST_DB_PWD=user", | ||
"INST_DB_HOST=localhost:5432", | ||
"INST_DB_NAME=filing" | ||
"INST_DB_NAME=filing", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should've probably caught this in one of the earlier PRs, the INST_
prefix was meant for the institutions database; at that time in the user-fi module, I was thinking we may need to interact with more than just one db, thus the prefix to differentiate; since we're pretty much in the one db for the app paradigm, we can probably drop the prefix; or change it to probably the FILING_
prefix.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ha I thought it meant "instance" like DB instance lol. Will update to drop the prefix
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok updated, and wrote the following stories to update in docker-deploy and helm chart files, respectively:
cfpb/sbl-project#131
Issue 42 in EKS repo
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Closes #46