-
Notifications
You must be signed in to change notification settings - Fork 90
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Pipeline scaling: In progress #1051
base: master
Are you sure you want to change the base?
Conversation
else: | ||
raise Exception(f"Unknown DB type {DB_TYPE}") | ||
with open(config_path, "w") as f: | ||
f.write(json.dumps(json_config, indent=4)) |
Check failure
Code scanning / CodeQL
Clear-text storage of sensitive information High
sensitive data (password)
This expression stores
sensitive data (password)
This expression stores
sensitive data (password)
This expression stores
sensitive data (password)
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #1051 +/- ##
============================================
+ Coverage 50.49% 51.98% +1.48%
+ Complexity 674 654 -20
============================================
Files 91 89 -2
Lines 5519 5396 -123
Branches 709 708 -1
============================================
+ Hits 2787 2805 +18
+ Misses 2470 2328 -142
- Partials 262 263 +1 ☔ View full report in Codecov by Sentry. |
88bcd0f
to
d0483e0
Compare
Description of what I changed
E2E test
TESTED:
Please replace this with a description of how you tested your PR beyond the
automated e2e/unit tests.
Checklist: I completed these to help reviewers :)
I have read and will follow the review process.
I am familiar with Google Style Guides for the language I have coded in.
No? Please take some time and review Java and Python style guides.
My IDE is configured to follow the Google code styles.
No? Unsure? -> configure your IDE.
I have added tests to cover my changes. (If you refactored existing code that was well tested you do not have to add tests)
I ran
mvn clean package
right before creating this pull request and added all formatting changes to my commit.All new and existing tests passed.
My pull request is based on the latest changes of the master branch.
No? Unsure? -> execute command
git pull --rebase upstream master