-
-
Notifications
You must be signed in to change notification settings - Fork 837
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: cannot install without db prefix #4001
Conversation
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.
Allowing no prefix makes sense, are we allowing no password for socket connections?
You can use no password, on development and production. Whether it's advisable has to be seen. Regardless of that decision, a user will receive errors based on their credentials and the credentials the database server expects anyway.. But blatantly demanding a password would potentially block developers with a local dev environment where root has no password. Ref: |
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.
Thanks!
Don't merge yet please. Till the big db ones are merged |
Ref: Both merged, will rebase and see if the issue persisted. |
6474db0
to
5593db9
Compare
@SychO9 seems one of your PR's made password already optional, I assume sqlite because that's completely file based. So the only thing this PR now fixes is: a) that prefixes are optional PS force pushed because I just made the changes on top of the merged/updated 2.x branch instead of rebasing. |
Database prefix and database password can be empty.
Caused by the rewrite in 6f11e04, as a consequence some settings of the database config are now incorrectly enforced/required.
Necessity
Confirmed
composer test
).Required changes: