-
Notifications
You must be signed in to change notification settings - Fork 61
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
Fixes Issue 56 #58
Fixes Issue 56 #58
Conversation
jobtastic/task.py:152:1: W293 blank line contains whitespace jobtastic/tests/test_broker_fallbacks.py:118:66: E231 missing whitespace after ':' jobtastic/tests/test_broker_fallbacks.py:124:66: E231 missing whitespace after ':' jobtastic/tests/test_broker_fallbacks.py:129:67: E231 missing whitespace after ':' jobtastic/tests/test_broker_fallbacks.py:135:67: E231 missing whitespace after ':' jobtastic/tests/test_broker_fallbacks.py:200:66: E231 missing whitespace after ':' jobtastic/tests/test_broker_fallbacks.py:209:67: E231 missing whitespace after ':'
@@ -349,6 +349,16 @@ all of your arguments must be keyword arguments. | |||
Note: This is a limitation of the current `significant_kwargs` implementation, | |||
and totally fixable if someone wants to submit a pull request. | |||
|
|||
### async_or_eager |
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.
👍
Could we list these two below the delay_or
versions? My impression is that most folks will continue to use the simpler signature of delay_or
.
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.
I think listing the two async_
versions after the delay_
versions still makes sense.
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.
WIth just that documentation re-order, I think this is ready to merge.
Fixed. I thought I had already addressed your comments but we were waiting on me =P |
Do you think it's worth adding a test on |
Looking through the documentation of result, I don't see anything that would change as a result of something we passed in to |
Fixes Issue 56
#56