Phase 2: Externalize datasource secrets + remove debug output - #48
Open
devin-ai-integration[bot] wants to merge 1 commit into
Open
devin-ai-integration[bot] wants to merge 1 commit into
devin-ai-integration[bot] wants to merge 1 commit into
Conversation
- Replace hardcoded spring.datasource username/password with ${DB_USERNAME}/
${DB_PASSWORD} env placeholders and a defaulted ${DB_URL}; document in README
- Drop raw password field from User.toString() to avoid leaking credentials
- Remove System.out.println debug calls in UserServiceImpl.disableUser
- Replace printStackTrace / System.out in RequestFilter with SLF4J logging
Co-Authored-By: Gael Kekatos <gael.kekatos@cognition.ai>
Author
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Phase 2 of the modernization plan: remove committed credentials and debug noise. Version-independent, low-risk changes. Stacked on top of the Phase 1 PR (#47) so the integration-test safety net verifies behavior is unchanged (21 tests still green).
Secrets externalized (
application.properties)Required env vars (
DB_USERNAME,DB_PASSWORD, optionalDB_URL) are documented in the README. The previously committed password must be treated as compromised and rotated on the DB server — flagged in the README (this repo has no infra I can rotate directly).Credential/debug leaks removed
User.toString()no longer includes thepasswordfield (it would otherwise leak the (encoded) password into any log line that prints aUser).UserServiceImpl.disableUser: dropped twoSystem.out.printlncalls; the disable action is now a singleLOG.info.RequestFilter:e.printStackTrace()→LOG.error(...), and theSystem.out.println("Pre-flight")→LOG.debug(...). (This filter is retired entirely in Phase 6.)Verification
mvn clean test→ 21 tests, 0 failures. Tests are unaffected because the test profile supplies its own H2 datasource properties, which shadow the mainapplication.properties.Link to Devin session: https://app.devin.ai/sessions/82be2e41fda54343a20a9b73e01c0631
Requested by: @gaelkekatos-jpg
Devin Review