-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Disable async function as group and check callback #2875
Conversation
Codecov Report
@@ Coverage Diff @@
## master #2875 +/- ##
==========================================
- Coverage 76.88% 76.74% -0.15%
==========================================
Files 219 225 +6
Lines 16666 16811 +145
==========================================
+ Hits 12814 12901 +87
- Misses 3044 3083 +39
- Partials 808 827 +19
Flags with carried forward coverage won't be shown. Click here to find out more.
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
The general inconsistencies between group as an idea and asynchronous code makes it not great fit and such we will try to discourage users to mix them. The same is done to check for consistency and as otherwise an async function will always give back true as it returns a promise which is cast to boolean. Updates #2728
fb87f90
to
5b483aa
Compare
Co-authored-by: na-- <n@andreev.sh>
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 except the minor error message nitpick, to make this error match the other ones.
Co-authored-by: na-- <n@andreev.sh>
The general inconsistencies between group as an idea and asynchronous code makes it not great fit and such we will try to discourage users to mix them.
Updates #2728