summaryrefslogtreecommitdiff
path: root/docs/userguide
Commit message (Collapse)AuthorAgeFilesLines
* docs: Add notes for kombu.utils.json.register_type (#1660)Serhii Tereshchenko2023-03-021-0/+17
| | | Refs #1590
* Avoid losing type of UUID when serializing/deserializing (#1575)Carlos Gottberg2022-07-171-2/+8
| | | | | | | | | | | | | | | | | | | | | * Avoid losing type of UUID when serializing/deserializing Serializing UUIDs as strs and deserializing them as strs can lead to somewhat obscure bugs such as the one that led to the creation of this PR in django-cacheback https://github.com/codeinthehole/django-cacheback/pull/100 which some would call unexpected behaviour. After all, an UUID is altogether a different type from strs and if bytes got their own serializer/deserializer for UUID the same logic should apply. * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Update documentation for JSON serialization Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
* json.py cleaning from outdated libs (#1533)dobosevych2022-04-161-4/+3
| | | | | | | | | | | | * json.py cleaning from outdated libs * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * 1. Removed cjson and simplejson from documentation, as those libraries aren't supported anymore 2. Removed _json_extra_kwargs from json.py Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
* Correct documentation stating kombu uses pickle protocol version 2Jonathan Lopez2022-04-061-1/+1
|
* Some small updates (#1486)Mads Jensen2022-01-301-1/+1
| | | | | * Some small updates * Update QpidException super-call to Python 3 syntax.
* Small fixes in documentationMatus Valo2021-06-091-0/+1
|
* Small doc fixes (#1319)Gabriel Niebler2021-03-181-11/+19
| | | | | | | | | | | | | | | * Clean up grammar in paragraph about callbacks * Structure event draining examples into subsections * Make code example make more sense … and bring it more in line with text above. * Fix code example * Fix another code example typo in method name
* Update connections.rst with Redis sentinel exampleAnudeep Samaiya2020-12-231-0/+3
| | | Add redis sentinel example for in connections.rst for kombu.
* Added kombu.pools.get_limit() to pools userguideMatus Valo2020-10-241-1/+14
|
* Fix parameter of SimpleBuffer in exampleMatus Valo2020-10-241-1/+1
|
* Fix default value of pool limit to 10 in docs.Matus Valo2020-10-121-1/+1
| | | | | In commit 40722ea59c38282a986ab83ebce853f1c8a67e8d the pool limit was changed from 200 to 10.
* Fixed examples in failover documentationMatus Valo2020-09-241-4/+0
|
* Added Failover userguideMatus Valo2020-09-052-0/+173
|
* Indent code block in documentationMatus Valo2020-08-281-2/+2
|
* Improved Consumer user guideMatus Valo2020-06-011-13/+68
|
* Corrected typo in exchange name. (#969)vikvns2018-12-201-1/+1
|
* Making the pyro transport available, fix it for recent Pyro4 versions, add ↵Irmen de Jong2018-11-251-0/+4
| | | | | | | | | broker daemon (#895) * Make the pyro transport available and fix it for recent Pyro4 version. Implemented the missing Pyro Kombu broker to actually be able to use the Pyro transport * code style
* Removed some unnecessary variable assignments and fix variable-typo in docsMads Jensen2017-09-221-1/+1
|
* fixed import path to SimpleQueue and SimpleBufferWojciech Matyśkiewicz2017-09-061-1/+1
|
* Update links in documentation to either https or to new locations (#786)Mads Jensen2017-08-201-1/+1
|
* Update consumers.rst (#647)Cemre Mengu2016-11-081-1/+1
| | | Added content type note for dummies like me
* Fill in missing documentationAsk Solem2016-10-261-1/+101
|
* Fix useless code-block (#620)Rémy Léone2016-08-261-2/+0
|
* One space after period for proportional fontsAsk Solem2016-07-295-19/+19
|
* Reorganizes kombu.utils.__init__ packageAsk Solem2016-07-161-1/+1
|
* Removes another MongoDB referenceAsk Solem2016-06-281-2/+0
|
* Removes Beanstalk transport for lack of resources to support itAsk Solem2016-06-281-2/+0
|
* Removes CouchDB transport for lack of resources to maintain it.Ask Solem2016-06-281-2/+0
|
* Removes Django ORM as a broker supportAsk Solem2016-06-271-2/+0
|
* Removes SQLAlchemy as a broker supportAsk Solem2016-06-271-2/+0
|
* an URL -> a URLAsk Solem2016-05-121-1/+1
|
* Use celery_sphinx to manage docsAsk Solem2016-04-075-18/+50
|
* flakesAsk Solem2016-03-212-6/+6
|
* Adds Queue.consumer_arguments for the ability to set Consumer Priority via ↵Ask Solem2016-03-101-0/+25
| | | | x-priority. Closes celery/celery#3098
* Updates changelogAsk Solem2015-11-061-0/+43
|
* Merge branch 'master' of github.com:celery/kombuAsk Solem2015-07-132-3/+3
|\
| * Merge pull request #492 from tbarbugli/patch-2Omer Katz2015-07-091-1/+1
| |\ | | | | | | fix reference to pools.Connections
| | * fix reference to pools.ConnectionsTommaso Barbugli2015-07-011-1/+1
| | |
| * | fix docs about content_type and serializationTommaso Barbugli2015-07-011-2/+2
| |/ | | | | if serializer is None and content_type is not specified, then serialization will happen (see messaging.Producer:_prepare)
* | Single item tuples no longer require whitespaceAsk Solem2015-07-132-2/+2
|/
* Serializer entrypoint arguments listed in the wrong order. Closes #473Ask Solem2015-06-121-2/+2
|
* Doc example should use producer declare argument. Closes #423Ask Solem2014-11-031-7/+7
|
* Merge branch 'master' into qpid-transportBrian Bouterse2014-05-282-29/+36
|\ | | | | | | | | | | Conflicts: README.rst docs/userguide/connections.rst
| * Merge branch 'daevaorn/priority'Ask Solem2014-05-201-23/+27
| |\
| | * Priority support for MongoDB transport. Transport table update. PriorityAlex Koshelev2014-05-081-23/+27
| | | | | | | | | | | | conversion unification.
| * | master now depends on Python 2.7Ask Solem2014-05-191-4/+7
| | |
* | | Merge branch 'master' into qpid-transportBrian Bouterse2014-05-071-1/+1
|\ \ \ | |/ /
| * | Fix reversed method referencesKlumhru2014-05-011-1/+1
| |/ | | | | According to docs on kombu.serialization.register the params order is (name, encoder, decoder, content_type, content_encoding). This caused us a bit of grief as I was too lazy to read the actual docs on register() :)
* | Added qpid to README and userguide.Brian Bouterse2014-03-171-4/+12
|/
* Improve example in consumer user guide. Closes #298Ask Solem2014-01-131-3/+2
|