-
Notifications
You must be signed in to change notification settings - Fork 7
Queue implementation #373
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
base: 6.0
Are you sure you want to change the base?
Queue implementation #373
Conversation
Signed-off-by: sergiu <[email protected]>
Signed-off-by: sergiu <[email protected]>
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.
- check qodana errors
- why we log the send message as ERR and not as notice ?
composer.json
Outdated
}, | ||
"require": { | ||
"php": "~8.2.0 || ~8.3.0", | ||
"ext-sockets": "*", |
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.
what is with those socket packages and extensions ?
not a good idea to add it to the default admin ...
there is nothing built in ?
config/config.php
Outdated
Core\Security\ConfigProvider::class, | ||
Core\Setting\ConfigProvider::class, | ||
Core\User\ConfigProvider::class, | ||
Core\NotificationSystem\ConfigProvider::class, |
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.
can we load this dynamically ?
Only if there is something about that in local.php ?
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.
@arhimede
We sure we want this in Core? Or even implemented and ready-to-use in our projects?
With this we force devs to use Queue even for tiny tasks of sending an email.
To me adding this complexity is similiar to moving Core to a separate repo and using it as a submodule (which we concurred that is probably too much) because it requires devs to set up another project they might not need in the first place.
Yeah, i know |
Maybe a simple tutorial |
Signed-off-by: sergiu <[email protected]>
Replaced the built it function to send emails with QUEUE implementation.