summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* NSQ work in progressnsqAsk Solem2015-11-2312-3/+329
|
* Changelog for #444Ask Solem2015-11-061-0/+14
|
* Fix tests after #444Ask Solem2015-11-061-1/+3
|
* Fixes typoAsk Solem2015-11-061-1/+1
|
* Fix message priority conversion for Redis and Beanstalk transportsAlex Koshelev2015-11-063-23/+23
|
* Updates changelogAsk Solem2015-11-062-0/+114
|
* Renames Python2/Python3 -> Python 2/Python 3Ask Solem2015-11-064-9/+9
|
* Use timedelta.total_secondsAsk Solem2015-11-061-3/+2
|
* Redis: Verify fanout client is registered. Closes #534Ask Solem2015-11-022-4/+7
|
* Redis: Fixes tests after enabling fanout prefix by default.Ask Solem2015-11-021-2/+2
|
* Authors: Add accidentally removed letter from email address.Ask Solem2015-10-271-1/+1
|
* Merge branch 'master' of github.com:celery/kombuAsk Solem2015-10-271-1/+2
|\
| * Added @felixonmars to the authors list.Omer Katz2015-10-271-1/+2
| |
* | Redis: fanout_patterns enabled by default, *disable for compat with Kombu 3*.Ask Solem2015-10-271-2/+4
| | | | | | | | | | This option adds the ability to filter fanout messages by patterns, e.g. celery can use it to only subscribe to worker related event messages (worker.*)
* | Redis: fanout_prefix are now enabled by default, *must disable for ↵Ask Solem2015-10-271-6/+8
|/ | | | | | | compatibility with kombu 3* This option adds a prefix to broadcast channels, so that broadcast messages are not seen across databases.
* Merge branch 'master' of github.com:celery/kombuAsk Solem2015-10-261-1/+1
|\
| * Merge pull request #475 from amcgregor/patch-1Ask Solem Hoel2015-10-231-1/+1
| |\ | | | | | | Hotfix to pin pymongo version; potential #474 resolution.
| | * Hotfix to pin pymongo version; potential #474 resolution.Alice Zoë Bevan–McGregor2015-05-061-1/+1
| | | | | | | | | Adapting to changes in pymongo-3.0 is better, but this would at least help prevent broken installs (and tests).
* | | Adds Connection.supports_exchange_type(type)Ask Solem2015-10-261-0/+3
|/ /
* | flakesAsk Solem2015-10-231-2/+5
| |
* | Redis: Adds support for Connection ssl argument. Closes #415Ask Solem2015-10-232-0/+22
| |
* | fixing htmlcleangdw22015-10-231-1/+1
| | | | | | | | Not sure what this was supposed to do since `$(SPHINX)` wasn't defined anywhere. Changed to call clean within docs dir.
* | Collect connection when reconnect fails. Closes #489Ask Solem2015-10-232-13/+16
| |
* | Merge pull request #511 from jindongh/patch-1Ask Solem Hoel2015-10-231-1/+1
|\ \ | | | | | | Remove surplus % from parameters of log.debug
| * | Remove surplus % from parameters of log.debughankjin2015-09-121-1/+1
| | | | | | | | | There are 5 % with only 4 parameters, remove the surplus one.
* | | Cosmetics for #512Ask Solem2015-10-231-10/+12
| | |
* | | Adds Hank John to AUTHORSAsk Solem2015-10-231-0/+1
| | |
* | | [SQS] Print access_key when SQS auth failed.Hank John2015-10-232-1/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | boto will try to get access_key and secret_key from many sources: 1. get from arguments. 2. get from .boto configuration file. 3. get from environment variables. 4. get from metadata service in elastic beanstalk environment. So when an access denied error occurrs, it is hard to identify whether we're using the wrong account or if the access policy is wrong. This fix will show the access_key for access denied error, which will help developer diagnose the problem.
* | | Merge branch 'tumb1er/json_error'Ask Solem2015-10-232-2/+17
|\ \ \
| * | | #453 remove recursion and add separate bindings handling for ↵Sergey Tikhonov2015-02-122-2/+10
| | | | | | | | | | | | | | | | as_dict(recurse=True)
| * | | fix json serializable error for active_queuesSergey Tikhonov2015-02-123-2/+19
| | | |
* | | | Merge with changelog from 3.0 branchAsk Solem2015-10-231-4/+76
| | | |
* | | | Django fake initial migration tip in ChangelogAsk Solem2015-10-231-0/+9
| | | |
* | | | Support for librabbitmqAsk Solem2015-10-221-2/+2
| | | |
* | | | Adds ConsumerProducerMixin (Issue #530)Ask Solem2015-10-212-26/+63
| | | |
* | | | Implement kombu version of the RabbitMQ rpc-tut-6 example. Closes #530Ask Solem2015-10-212-0/+115
| | | |
* | | | Producer.publish reply_to argument can now be QueueAsk Solem2015-10-211-0/+5
| | | |
* | | | maybe_declare now sets name on original for autogen queuesAsk Solem2015-10-211-5/+9
| | | |
* | | | Kombu 3.1 is now Kombu 4.0Ask Solem2015-10-204-7/+7
| | | |
* | | | Fixes testsAsk Solem2015-10-202-4/+4
| | | |
* | | | Message: priority is a property, not delivery_info (Issue ↵Ask Solem2015-10-201-2/+2
| | | | | | | | | | | | | | | | celery/celery#2868) Backward incompatible
* | | | Redis: Make sure pipelines are cleaned up (Issue celery/celery#2751)Ask Solem2015-10-203-40/+53
| | | |
* | | | Travis: Python 3.5 does not work here for some reasonAsk Solem2015-10-061-1/+0
| | | |
* | | | Tests passingAsk Solem2015-10-061-3/+3
| | | |
* | | | Fixes toxAsk Solem2015-10-051-1/+1
| | | |
* | | | Redis transport depends on py-redis 2.10.0 or later. Closes #468Ask Solem2015-10-051-2/+2
| | | |
* | | | flakesAsk Solem2015-10-051-5/+14
| | | |
* | | | Adds Consumer tag_prefix option. Closes #509Ask Solem2015-10-052-2/+14
| | | |
* | | | Django 1.9 compatibility. Closes #515Ask Solem2015-10-052-64/+59
| | | |
* | | | flakesAsk Solem2015-10-024-9/+19
| | | |