summaryrefslogtreecommitdiff
path: root/t/unit/asynchronous
Commit message (Collapse)AuthorAgeFilesLines
* Remove five usage from tests.Omer Katz2020-07-232-4/+4
|
* pyupgradeOmer Katz2020-07-1310-30/+4
|
* fix 100% cpu usage on linux while using sqsAndrii Maletskyi2020-05-151-16/+14
| | | | fix https://github.com/celery/celery/issues/5299
* Unit test for the fix relating to the issue #1172Ihar Nauros2020-04-221-1/+3
|
* Add predefined_queues option to SQS transport (#1156)Jonathan Ingram2020-02-261-4/+23
|
* reset ready before execute callback (#1126)Smite Chow2019-12-021-1/+4
| | | | | | * reset ready before execute callback * add test to cover hub._ready reset to empty
* don't stop receiving tasks on 503 SQS error. (#1064)Eugene Beseda2019-06-251-1/+2
| | | | | | * don't stop receiving tasks on 503 SQS error. * fix linter errors
* return an empty list on SQS internal error. (#1059)Eugene Beseda2019-06-131-0/+20
| | | | | | * return empty list on SQS internal error. * add test for on_list_ready error codes
* Happify lint.Omer Katz2019-02-041-1/+1
|
* Fixed Worker shutdown creates duplicate messages in SQS broker (#926)Mintu Kumar Sah2018-10-131-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | * On restore changes message visibility instead of send new message * Acknowledge message on hub close * Use sqs instead of async sqs to delete message * changes itertools to range * Empty Hub ready * fixed test_poller_regeneration_on_access * Fixed typo in comment * Simplify loop to process self._ready * Added test case for redelivered _put * Lint fixes * Added test case for delete_message call
* Fix infinity loop in create_loop (#923)Vsevolod Strukchinsky2018-09-271-11/+8
|
* "Reentrant" version, that allows a `celery.bin.celery.main` worker to run ↵Alan Justino da Silva2018-08-101-1/+9
| | | | | | | | | | | | | | | | | | | multiple times (#866) * Regenerate poll()s of Hub and Redis, after shutdown Allows the same Python process to bring a new Worker after a shutdown (SystemExit) rescued. See: https://botbot.me/freenode/celery/2018-04-16/?msg=99046233&page=2 * Hub.poller is now a @property * Fixed tests that supose .poller to be settable to None * Test hub.pooler regeneration * No need to regenerate poller on Redis if the Hub behaves nicely
* Rename `async` keyword to `asynchronous` (#839)Thomas Achtemichuk2018-03-1914-0/+1845
* Rename `async` keyword to `asynchronous` * Fixes #742 * Resolves "DeprecationWarning: 'async' and 'await' will become reserved keywords in Python 3.7" * Address PR feedback * Update appveyor config * Rename docs and tests