celery-asyncio 6.0.0a1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- celery_asyncio-6.0.0a1/.claude/settings.local.json +37 -0
- celery_asyncio-6.0.0a1/.dockerignore +33 -0
- celery_asyncio-6.0.0a1/.editorconfig +15 -0
- celery_asyncio-6.0.0a1/.github/FUNDING.yml +8 -0
- celery_asyncio-6.0.0a1/.github/ISSUE_TEMPLATE/Bug-Report.md +166 -0
- celery_asyncio-6.0.0a1/.github/ISSUE_TEMPLATE/Documentation-Bug-Report.md +56 -0
- celery_asyncio-6.0.0a1/.github/ISSUE_TEMPLATE/Enhancement.md +94 -0
- celery_asyncio-6.0.0a1/.github/ISSUE_TEMPLATE/Feature-Request.md +93 -0
- celery_asyncio-6.0.0a1/.github/ISSUE_TEMPLATE/Major-Version-Release-Checklist.md +48 -0
- celery_asyncio-6.0.0a1/.github/ISSUE_TEMPLATE/Minor-Version-Release-Checklist.md +136 -0
- celery_asyncio-6.0.0a1/.github/ISSUE_TEMPLATE/Patch-Version-Release-Checklist.md +136 -0
- celery_asyncio-6.0.0a1/.github/ISSUE_TEMPLATE/config.yml +13 -0
- celery_asyncio-6.0.0a1/.github/ISSUE_TEMPLATE.md +4 -0
- celery_asyncio-6.0.0a1/.github/PULL_REQUEST_TEMPLATE.md +14 -0
- celery_asyncio-6.0.0a1/.github/copilot-instructions.md +567 -0
- celery_asyncio-6.0.0a1/.github/dependabot.yml +10 -0
- celery_asyncio-6.0.0a1/.github/opencollective.yml +18 -0
- celery_asyncio-6.0.0a1/.github/workflows/ci.yml +32 -0
- celery_asyncio-6.0.0a1/.github/workflows/codeql-analysis.yml +71 -0
- celery_asyncio-6.0.0a1/.github/workflows/docker.yml +76 -0
- celery_asyncio-6.0.0a1/.github/workflows/integration-tests.yml +72 -0
- celery_asyncio-6.0.0a1/.github/workflows/linter.yml +14 -0
- celery_asyncio-6.0.0a1/.github/workflows/publish.yml +61 -0
- celery_asyncio-6.0.0a1/.github/workflows/python-package.yml +136 -0
- celery_asyncio-6.0.0a1/.github/workflows/semgrep.yml +25 -0
- celery_asyncio-6.0.0a1/.github/workflows/smoke-tests.yml +57 -0
- celery_asyncio-6.0.0a1/.github/workflows/tag.yml +56 -0
- celery_asyncio-6.0.0a1/.gitignore +108 -0
- celery_asyncio-6.0.0a1/.pre-commit-config.yaml +51 -0
- celery_asyncio-6.0.0a1/.readthedocs.yaml +26 -0
- celery_asyncio-6.0.0a1/CONTRIBUTING.rst +1512 -0
- celery_asyncio-6.0.0a1/CONTRIBUTORS.txt +308 -0
- celery_asyncio-6.0.0a1/Changelog.rst +2818 -0
- celery_asyncio-6.0.0a1/LICENSE +55 -0
- celery_asyncio-6.0.0a1/MANIFEST.in +26 -0
- celery_asyncio-6.0.0a1/Makefile +204 -0
- celery_asyncio-6.0.0a1/PKG-INFO +705 -0
- celery_asyncio-6.0.0a1/README.rst +608 -0
- celery_asyncio-6.0.0a1/SECURITY.md +15 -0
- celery_asyncio-6.0.0a1/TODO +2 -0
- celery_asyncio-6.0.0a1/bandit.json +2475 -0
- celery_asyncio-6.0.0a1/celery/__init__.py +172 -0
- celery_asyncio-6.0.0a1/celery/__main__.py +19 -0
- celery_asyncio-6.0.0a1/celery/_state.py +197 -0
- celery_asyncio-6.0.0a1/celery/app/__init__.py +76 -0
- celery_asyncio-6.0.0a1/celery/app/amqp.py +657 -0
- celery_asyncio-6.0.0a1/celery/app/annotations.py +52 -0
- celery_asyncio-6.0.0a1/celery/app/autoretry.py +66 -0
- celery_asyncio-6.0.0a1/celery/app/backends.py +69 -0
- celery_asyncio-6.0.0a1/celery/app/base.py +1525 -0
- celery_asyncio-6.0.0a1/celery/app/builtins.py +186 -0
- celery_asyncio-6.0.0a1/celery/app/control.py +788 -0
- celery_asyncio-6.0.0a1/celery/app/defaults.py +435 -0
- celery_asyncio-6.0.0a1/celery/app/events.py +40 -0
- celery_asyncio-6.0.0a1/celery/app/log.py +248 -0
- celery_asyncio-6.0.0a1/celery/app/registry.py +68 -0
- celery_asyncio-6.0.0a1/celery/app/routes.py +136 -0
- celery_asyncio-6.0.0a1/celery/app/task.py +1178 -0
- celery_asyncio-6.0.0a1/celery/app/trace.py +782 -0
- celery_asyncio-6.0.0a1/celery/app/utils.py +415 -0
- celery_asyncio-6.0.0a1/celery/apps/__init__.py +0 -0
- celery_asyncio-6.0.0a1/celery/apps/beat.py +160 -0
- celery_asyncio-6.0.0a1/celery/apps/multi.py +506 -0
- celery_asyncio-6.0.0a1/celery/apps/worker.py +509 -0
- celery_asyncio-6.0.0a1/celery/backends/__init__.py +1 -0
- celery_asyncio-6.0.0a1/celery/backends/arangodb.py +190 -0
- celery_asyncio-6.0.0a1/celery/backends/asynchronous.py +378 -0
- celery_asyncio-6.0.0a1/celery/backends/azureblockblob.py +188 -0
- celery_asyncio-6.0.0a1/celery/backends/base.py +1211 -0
- celery_asyncio-6.0.0a1/celery/backends/cache.py +163 -0
- celery_asyncio-6.0.0a1/celery/backends/cassandra.py +256 -0
- celery_asyncio-6.0.0a1/celery/backends/consul.py +116 -0
- celery_asyncio-6.0.0a1/celery/backends/cosmosdbsql.py +218 -0
- celery_asyncio-6.0.0a1/celery/backends/couchbase.py +114 -0
- celery_asyncio-6.0.0a1/celery/backends/couchdb.py +100 -0
- celery_asyncio-6.0.0a1/celery/backends/database/__init__.py +234 -0
- celery_asyncio-6.0.0a1/celery/backends/database/models.py +110 -0
- celery_asyncio-6.0.0a1/celery/backends/database/session.py +89 -0
- celery_asyncio-6.0.0a1/celery/backends/dynamodb.py +556 -0
- celery_asyncio-6.0.0a1/celery/backends/elasticsearch.py +283 -0
- celery_asyncio-6.0.0a1/celery/backends/filesystem.py +112 -0
- celery_asyncio-6.0.0a1/celery/backends/gcs.py +354 -0
- celery_asyncio-6.0.0a1/celery/backends/mongodb.py +334 -0
- celery_asyncio-6.0.0a1/celery/backends/redis.py +715 -0
- celery_asyncio-6.0.0a1/celery/backends/rpc.py +342 -0
- celery_asyncio-6.0.0a1/celery/backends/s3.py +87 -0
- celery_asyncio-6.0.0a1/celery/beat.py +738 -0
- celery_asyncio-6.0.0a1/celery/bin/__init__.py +0 -0
- celery_asyncio-6.0.0a1/celery/bin/amqp.py +312 -0
- celery_asyncio-6.0.0a1/celery/bin/base.py +306 -0
- celery_asyncio-6.0.0a1/celery/bin/beat.py +72 -0
- celery_asyncio-6.0.0a1/celery/bin/call.py +71 -0
- celery_asyncio-6.0.0a1/celery/bin/celery.py +227 -0
- celery_asyncio-6.0.0a1/celery/bin/control.py +252 -0
- celery_asyncio-6.0.0a1/celery/bin/events.py +94 -0
- celery_asyncio-6.0.0a1/celery/bin/graph.py +197 -0
- celery_asyncio-6.0.0a1/celery/bin/list.py +38 -0
- celery_asyncio-6.0.0a1/celery/bin/logtool.py +157 -0
- celery_asyncio-6.0.0a1/celery/bin/migrate.py +63 -0
- celery_asyncio-6.0.0a1/celery/bin/multi.py +480 -0
- celery_asyncio-6.0.0a1/celery/bin/purge.py +70 -0
- celery_asyncio-6.0.0a1/celery/bin/result.py +30 -0
- celery_asyncio-6.0.0a1/celery/bin/shell.py +173 -0
- celery_asyncio-6.0.0a1/celery/bin/upgrade.py +91 -0
- celery_asyncio-6.0.0a1/celery/bin/worker.py +371 -0
- celery_asyncio-6.0.0a1/celery/bootsteps.py +415 -0
- celery_asyncio-6.0.0a1/celery/canvas.py +2420 -0
- celery_asyncio-6.0.0a1/celery/concurrency/__init__.py +48 -0
- celery_asyncio-6.0.0a1/celery/concurrency/asynpool.py +1369 -0
- celery_asyncio-6.0.0a1/celery/concurrency/base.py +180 -0
- celery_asyncio-6.0.0a1/celery/concurrency/eventlet.py +181 -0
- celery_asyncio-6.0.0a1/celery/concurrency/gevent.py +171 -0
- celery_asyncio-6.0.0a1/celery/concurrency/prefork.py +172 -0
- celery_asyncio-6.0.0a1/celery/concurrency/solo.py +31 -0
- celery_asyncio-6.0.0a1/celery/concurrency/thread.py +64 -0
- celery_asyncio-6.0.0a1/celery/contrib/__init__.py +0 -0
- celery_asyncio-6.0.0a1/celery/contrib/abortable.py +165 -0
- celery_asyncio-6.0.0a1/celery/contrib/django/__init__.py +0 -0
- celery_asyncio-6.0.0a1/celery/contrib/django/task.py +21 -0
- celery_asyncio-6.0.0a1/celery/contrib/migrate.py +416 -0
- celery_asyncio-6.0.0a1/celery/contrib/pytest.py +216 -0
- celery_asyncio-6.0.0a1/celery/contrib/rdb.py +187 -0
- celery_asyncio-6.0.0a1/celery/contrib/sphinx.py +105 -0
- celery_asyncio-6.0.0a1/celery/contrib/testing/__init__.py +0 -0
- celery_asyncio-6.0.0a1/celery/contrib/testing/app.py +112 -0
- celery_asyncio-6.0.0a1/celery/contrib/testing/manager.py +239 -0
- celery_asyncio-6.0.0a1/celery/contrib/testing/mocks.py +137 -0
- celery_asyncio-6.0.0a1/celery/contrib/testing/tasks.py +9 -0
- celery_asyncio-6.0.0a1/celery/contrib/testing/worker.py +223 -0
- celery_asyncio-6.0.0a1/celery/events/__init__.py +15 -0
- celery_asyncio-6.0.0a1/celery/events/cursesmon.py +534 -0
- celery_asyncio-6.0.0a1/celery/events/dispatcher.py +229 -0
- celery_asyncio-6.0.0a1/celery/events/dumper.py +103 -0
- celery_asyncio-6.0.0a1/celery/events/event.py +63 -0
- celery_asyncio-6.0.0a1/celery/events/receiver.py +149 -0
- celery_asyncio-6.0.0a1/celery/events/snapshot.py +111 -0
- celery_asyncio-6.0.0a1/celery/events/state.py +730 -0
- celery_asyncio-6.0.0a1/celery/exceptions.py +312 -0
- celery_asyncio-6.0.0a1/celery/fixups/__init__.py +1 -0
- celery_asyncio-6.0.0a1/celery/fixups/django.py +220 -0
- celery_asyncio-6.0.0a1/celery/loaders/__init__.py +18 -0
- celery_asyncio-6.0.0a1/celery/loaders/app.py +8 -0
- celery_asyncio-6.0.0a1/celery/loaders/base.py +278 -0
- celery_asyncio-6.0.0a1/celery/loaders/default.py +42 -0
- celery_asyncio-6.0.0a1/celery/local.py +542 -0
- celery_asyncio-6.0.0a1/celery/platforms.py +843 -0
- celery_asyncio-6.0.0a1/celery/result.py +1092 -0
- celery_asyncio-6.0.0a1/celery/schedules.py +887 -0
- celery_asyncio-6.0.0a1/celery/security/__init__.py +74 -0
- celery_asyncio-6.0.0a1/celery/security/certificate.py +113 -0
- celery_asyncio-6.0.0a1/celery/security/key.py +35 -0
- celery_asyncio-6.0.0a1/celery/security/serialization.py +90 -0
- celery_asyncio-6.0.0a1/celery/security/utils.py +28 -0
- celery_asyncio-6.0.0a1/celery/signals.py +154 -0
- celery_asyncio-6.0.0a1/celery/states.py +151 -0
- celery_asyncio-6.0.0a1/celery/utils/__init__.py +36 -0
- celery_asyncio-6.0.0a1/celery/utils/abstract.py +146 -0
- celery_asyncio-6.0.0a1/celery/utils/annotations.py +49 -0
- celery_asyncio-6.0.0a1/celery/utils/collections.py +863 -0
- celery_asyncio-6.0.0a1/celery/utils/debug.py +193 -0
- celery_asyncio-6.0.0a1/celery/utils/deprecated.py +113 -0
- celery_asyncio-6.0.0a1/celery/utils/dispatch/LICENSE.python +255 -0
- celery_asyncio-6.0.0a1/celery/utils/dispatch/__init__.py +4 -0
- celery_asyncio-6.0.0a1/celery/utils/dispatch/license.txt +35 -0
- celery_asyncio-6.0.0a1/celery/utils/dispatch/signal.py +358 -0
- celery_asyncio-6.0.0a1/celery/utils/functional.py +402 -0
- celery_asyncio-6.0.0a1/celery/utils/graph.py +309 -0
- celery_asyncio-6.0.0a1/celery/utils/imports.py +164 -0
- celery_asyncio-6.0.0a1/celery/utils/iso8601.py +76 -0
- celery_asyncio-6.0.0a1/celery/utils/log.py +295 -0
- celery_asyncio-6.0.0a1/celery/utils/nodenames.py +114 -0
- celery_asyncio-6.0.0a1/celery/utils/objects.py +142 -0
- celery_asyncio-6.0.0a1/celery/utils/quorum_queues.py +20 -0
- celery_asyncio-6.0.0a1/celery/utils/saferepr.py +269 -0
- celery_asyncio-6.0.0a1/celery/utils/serialization.py +273 -0
- celery_asyncio-6.0.0a1/celery/utils/static/__init__.py +14 -0
- celery_asyncio-6.0.0a1/celery/utils/static/celery_128.png +0 -0
- celery_asyncio-6.0.0a1/celery/utils/sysinfo.py +50 -0
- celery_asyncio-6.0.0a1/celery/utils/term.py +184 -0
- celery_asyncio-6.0.0a1/celery/utils/text.py +198 -0
- celery_asyncio-6.0.0a1/celery/utils/threads.py +331 -0
- celery_asyncio-6.0.0a1/celery/utils/time.py +462 -0
- celery_asyncio-6.0.0a1/celery/utils/timer2.py +160 -0
- celery_asyncio-6.0.0a1/celery/worker/__init__.py +4 -0
- celery_asyncio-6.0.0a1/celery/worker/autoscale.py +154 -0
- celery_asyncio-6.0.0a1/celery/worker/components.py +240 -0
- celery_asyncio-6.0.0a1/celery/worker/consumer/__init__.py +15 -0
- celery_asyncio-6.0.0a1/celery/worker/consumer/agent.py +21 -0
- celery_asyncio-6.0.0a1/celery/worker/consumer/connection.py +36 -0
- celery_asyncio-6.0.0a1/celery/worker/consumer/consumer.py +782 -0
- celery_asyncio-6.0.0a1/celery/worker/consumer/control.py +33 -0
- celery_asyncio-6.0.0a1/celery/worker/consumer/delayed_delivery.py +273 -0
- celery_asyncio-6.0.0a1/celery/worker/consumer/events.py +68 -0
- celery_asyncio-6.0.0a1/celery/worker/consumer/gossip.py +206 -0
- celery_asyncio-6.0.0a1/celery/worker/consumer/heart.py +36 -0
- celery_asyncio-6.0.0a1/celery/worker/consumer/mingle.py +76 -0
- celery_asyncio-6.0.0a1/celery/worker/consumer/tasks.py +119 -0
- celery_asyncio-6.0.0a1/celery/worker/control.py +625 -0
- celery_asyncio-6.0.0a1/celery/worker/heartbeat.py +61 -0
- celery_asyncio-6.0.0a1/celery/worker/loops.py +143 -0
- celery_asyncio-6.0.0a1/celery/worker/pidbox.py +122 -0
- celery_asyncio-6.0.0a1/celery/worker/request.py +790 -0
- celery_asyncio-6.0.0a1/celery/worker/state.py +288 -0
- celery_asyncio-6.0.0a1/celery/worker/strategy.py +209 -0
- celery_asyncio-6.0.0a1/celery/worker/worker.py +435 -0
- celery_asyncio-6.0.0a1/docker/Dockerfile +177 -0
- celery_asyncio-6.0.0a1/docker/docker-compose.yml +48 -0
- celery_asyncio-6.0.0a1/docker/docs/Dockerfile +33 -0
- celery_asyncio-6.0.0a1/docker/docs/start +7 -0
- celery_asyncio-6.0.0a1/docker/entrypoint +7 -0
- celery_asyncio-6.0.0a1/docker/scripts/create-linux-user.sh +3 -0
- celery_asyncio-6.0.0a1/docker/scripts/install-couchbase.sh +8 -0
- celery_asyncio-6.0.0a1/docker/scripts/install-pyenv.sh +15 -0
- celery_asyncio-6.0.0a1/docs/AUTHORS.txt +152 -0
- celery_asyncio-6.0.0a1/docs/Makefile +252 -0
- celery_asyncio-6.0.0a1/docs/THANKS +8 -0
- celery_asyncio-6.0.0a1/docs/_ext/celerydocs.py +180 -0
- celery_asyncio-6.0.0a1/docs/_static/.keep +0 -0
- celery_asyncio-6.0.0a1/docs/_templates/sidebardonations.html +9 -0
- celery_asyncio-6.0.0a1/docs/asyncio-worker-rewrite-plan.md +672 -0
- celery_asyncio-6.0.0a1/docs/changelog.rst +1 -0
- celery_asyncio-6.0.0a1/docs/changelog_formatter.py +130 -0
- celery_asyncio-6.0.0a1/docs/community.rst +55 -0
- celery_asyncio-6.0.0a1/docs/conf.py +104 -0
- celery_asyncio-6.0.0a1/docs/configuration.html +6 -0
- celery_asyncio-6.0.0a1/docs/contributing.rst +1 -0
- celery_asyncio-6.0.0a1/docs/copyright.rst +28 -0
- celery_asyncio-6.0.0a1/docs/django/first-steps-with-django.rst +325 -0
- celery_asyncio-6.0.0a1/docs/django/index.rst +13 -0
- celery_asyncio-6.0.0a1/docs/faq.rst +964 -0
- celery_asyncio-6.0.0a1/docs/getting-started/backends-and-brokers/gcpubsub.rst +144 -0
- celery_asyncio-6.0.0a1/docs/getting-started/backends-and-brokers/index.rst +118 -0
- celery_asyncio-6.0.0a1/docs/getting-started/backends-and-brokers/kafka.rst +84 -0
- celery_asyncio-6.0.0a1/docs/getting-started/backends-and-brokers/rabbitmq.rst +257 -0
- celery_asyncio-6.0.0a1/docs/getting-started/backends-and-brokers/redis.rst +294 -0
- celery_asyncio-6.0.0a1/docs/getting-started/backends-and-brokers/sqs.rst +365 -0
- celery_asyncio-6.0.0a1/docs/getting-started/first-steps-with-celery.rst +487 -0
- celery_asyncio-6.0.0a1/docs/getting-started/index.rst +15 -0
- celery_asyncio-6.0.0a1/docs/getting-started/introduction.rst +314 -0
- celery_asyncio-6.0.0a1/docs/getting-started/next-steps.rst +777 -0
- celery_asyncio-6.0.0a1/docs/getting-started/resources.rst +11 -0
- celery_asyncio-6.0.0a1/docs/glossary.rst +115 -0
- celery_asyncio-6.0.0a1/docs/history/changelog-1.0.rst +1884 -0
- celery_asyncio-6.0.0a1/docs/history/changelog-2.0.rst +1079 -0
- celery_asyncio-6.0.0a1/docs/history/changelog-2.1.rst +767 -0
- celery_asyncio-6.0.0a1/docs/history/changelog-2.2.rst +1028 -0
- celery_asyncio-6.0.0a1/docs/history/changelog-2.3.rst +370 -0
- celery_asyncio-6.0.0a1/docs/history/changelog-2.4.rst +415 -0
- celery_asyncio-6.0.0a1/docs/history/changelog-2.5.rst +218 -0
- celery_asyncio-6.0.0a1/docs/history/changelog-3.0.rst +1605 -0
- celery_asyncio-6.0.0a1/docs/history/changelog-3.1.rst +1736 -0
- celery_asyncio-6.0.0a1/docs/history/changelog-4.0.rst +231 -0
- celery_asyncio-6.0.0a1/docs/history/changelog-4.1.rst +344 -0
- celery_asyncio-6.0.0a1/docs/history/changelog-4.2.rst +452 -0
- celery_asyncio-6.0.0a1/docs/history/changelog-4.3.rst +559 -0
- celery_asyncio-6.0.0a1/docs/history/changelog-4.4.rst +776 -0
- celery_asyncio-6.0.0a1/docs/history/changelog-5.0.rst +173 -0
- celery_asyncio-6.0.0a1/docs/history/changelog-5.1.rst +139 -0
- celery_asyncio-6.0.0a1/docs/history/changelog-5.3.rst +504 -0
- celery_asyncio-6.0.0a1/docs/history/changelog-5.4.rst +194 -0
- celery_asyncio-6.0.0a1/docs/history/changelog-5.5.rst +1722 -0
- celery_asyncio-6.0.0a1/docs/history/changelog-5.6.rst +135 -0
- celery_asyncio-6.0.0a1/docs/history/index.rst +47 -0
- celery_asyncio-6.0.0a1/docs/history/whatsnew-2.5.rst +517 -0
- celery_asyncio-6.0.0a1/docs/history/whatsnew-3.0.rst +1032 -0
- celery_asyncio-6.0.0a1/docs/history/whatsnew-3.1.rst +1278 -0
- celery_asyncio-6.0.0a1/docs/history/whatsnew-4.0.rst +2351 -0
- celery_asyncio-6.0.0a1/docs/history/whatsnew-4.1.rst +258 -0
- celery_asyncio-6.0.0a1/docs/history/whatsnew-4.2.rst +998 -0
- celery_asyncio-6.0.0a1/docs/history/whatsnew-4.3.rst +556 -0
- celery_asyncio-6.0.0a1/docs/history/whatsnew-4.4.rst +250 -0
- celery_asyncio-6.0.0a1/docs/history/whatsnew-5.0.rst +326 -0
- celery_asyncio-6.0.0a1/docs/history/whatsnew-5.1.rst +439 -0
- celery_asyncio-6.0.0a1/docs/history/whatsnew-5.3.rst +351 -0
- celery_asyncio-6.0.0a1/docs/history/whatsnew-5.4.rst +233 -0
- celery_asyncio-6.0.0a1/docs/history/whatsnew-5.5.rst +360 -0
- celery_asyncio-6.0.0a1/docs/history/whatsnew-5.6.rst +196 -0
- celery_asyncio-6.0.0a1/docs/images/blacksmith-logo-white-on-black.svg +15 -0
- celery_asyncio-6.0.0a1/docs/images/celery-banner-small.png +0 -0
- celery_asyncio-6.0.0a1/docs/images/celery-banner.png +0 -0
- celery_asyncio-6.0.0a1/docs/images/celery_128.png +0 -0
- celery_asyncio-6.0.0a1/docs/images/celery_512.png +0 -0
- celery_asyncio-6.0.0a1/docs/images/celeryevshotsm.jpg +0 -0
- celery_asyncio-6.0.0a1/docs/images/cloudamqp-logo-lightbg.svg +12 -0
- celery_asyncio-6.0.0a1/docs/images/dashboard.png +0 -0
- celery_asyncio-6.0.0a1/docs/images/dragonfly.svg +89 -0
- celery_asyncio-6.0.0a1/docs/images/favicon.ico +0 -0
- celery_asyncio-6.0.0a1/docs/images/monitor.png +0 -0
- celery_asyncio-6.0.0a1/docs/images/result_graph.png +0 -0
- celery_asyncio-6.0.0a1/docs/images/worker_graph_full.png +0 -0
- celery_asyncio-6.0.0a1/docs/includes/installation.txt +174 -0
- celery_asyncio-6.0.0a1/docs/includes/introduction.txt +201 -0
- celery_asyncio-6.0.0a1/docs/includes/resources.txt +57 -0
- celery_asyncio-6.0.0a1/docs/index.rst +70 -0
- celery_asyncio-6.0.0a1/docs/internals/app-overview.rst +214 -0
- celery_asyncio-6.0.0a1/docs/internals/deprecation.rst +238 -0
- celery_asyncio-6.0.0a1/docs/internals/guide.rst +334 -0
- celery_asyncio-6.0.0a1/docs/internals/index.rst +18 -0
- celery_asyncio-6.0.0a1/docs/internals/protocol.rst +397 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery._state.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.app.annotations.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.app.routes.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.app.trace.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.backends.arangodb.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.backends.asynchronous.rst +13 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.backends.azureblockblob.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.backends.base.rst +13 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.backends.cache.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.backends.cassandra.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.backends.consul.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.backends.cosmosdbsql.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.backends.couchbase.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.backends.couchdb.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.backends.database.models.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.backends.database.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.backends.database.session.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.backends.dynamodb.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.backends.elasticsearch.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.backends.filesystem.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.backends.gcs.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.backends.mongodb.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.backends.redis.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.backends.rpc.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.backends.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.backends.s3.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.concurrency.base.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.concurrency.eventlet.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.concurrency.gevent.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.concurrency.prefork.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.concurrency.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.concurrency.solo.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.concurrency.thread.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.events.cursesmon.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.events.dumper.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.events.snapshot.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.platforms.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.security.certificate.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.security.key.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.security.serialization.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.security.utils.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.utils.abstract.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.utils.collections.rst +12 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.utils.deprecated.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.utils.dispatch.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.utils.dispatch.signal.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.utils.functional.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.utils.graph.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.utils.imports.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.utils.iso8601.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.utils.log.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.utils.nodenames.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.utils.objects.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.utils.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.utils.saferepr.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.utils.serialization.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.utils.sysinfo.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.utils.term.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.utils.text.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.utils.threads.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.utils.time.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.utils.timer2.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.worker.autoscale.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.worker.components.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.worker.control.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.worker.heartbeat.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.worker.loops.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/celery.worker.pidbox.rst +11 -0
- celery_asyncio-6.0.0a1/docs/internals/reference/index.rst +78 -0
- celery_asyncio-6.0.0a1/docs/internals/worker.rst +57 -0
- celery_asyncio-6.0.0a1/docs/make.bat +278 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.app.amqp.rst +56 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.app.autoretry.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.app.backends.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.app.builtins.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.app.control.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.app.defaults.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.app.events.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.app.log.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.app.registry.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.app.rst +19 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.app.task.rst +10 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.app.utils.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.apps.beat.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.apps.multi.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.apps.worker.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.beat.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.bin.amqp.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.bin.base.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.bin.beat.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.bin.call.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.bin.celery.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.bin.control.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.bin.events.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.bin.graph.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.bin.list.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.bin.logtool.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.bin.migrate.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.bin.multi.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.bin.purge.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.bin.result.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.bin.shell.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.bin.upgrade.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.bin.worker.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.bootsteps.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.contrib.abortable.rst +12 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.contrib.django.task.rst +17 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.contrib.migrate.rst +12 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.contrib.pytest.rst +16 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.contrib.rdb.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.contrib.sphinx.rst +8 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.contrib.testing.app.rst +16 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.contrib.testing.manager.rst +16 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.contrib.testing.mocks.rst +16 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.contrib.testing.worker.rst +16 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.events.dispatcher.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.events.event.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.events.receiver.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.events.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.events.state.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.exceptions.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.loaders.app.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.loaders.base.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.loaders.default.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.loaders.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.result.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.rst +160 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.schedules.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.security.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.signals.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.states.rst +8 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.utils.debug.rst +48 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.worker.consumer.agent.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.worker.consumer.connection.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.worker.consumer.consumer.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.worker.consumer.control.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.worker.consumer.events.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.worker.consumer.gossip.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.worker.consumer.heart.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.worker.consumer.mingle.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.worker.consumer.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.worker.consumer.tasks.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.worker.request.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.worker.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.worker.state.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.worker.strategy.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/celery.worker.worker.rst +11 -0
- celery_asyncio-6.0.0a1/docs/reference/cli.rst +10 -0
- celery_asyncio-6.0.0a1/docs/reference/index.rst +89 -0
- celery_asyncio-6.0.0a1/docs/sec/CELERYSA-0001.txt +93 -0
- celery_asyncio-6.0.0a1/docs/sec/CELERYSA-0002.txt +90 -0
- celery_asyncio-6.0.0a1/docs/sec/CELERYSA-0003.txt +59 -0
- celery_asyncio-6.0.0a1/docs/spelling_wordlist.txt +597 -0
- celery_asyncio-6.0.0a1/docs/templates/readme.txt +32 -0
- celery_asyncio-6.0.0a1/docs/tutorials/daemonizing.html +6 -0
- celery_asyncio-6.0.0a1/docs/tutorials/debugging.html +6 -0
- celery_asyncio-6.0.0a1/docs/tutorials/index.rst +11 -0
- celery_asyncio-6.0.0a1/docs/tutorials/task-cookbook.rst +80 -0
- celery_asyncio-6.0.0a1/docs/userguide/application.rst +556 -0
- celery_asyncio-6.0.0a1/docs/userguide/calling.rst +832 -0
- celery_asyncio-6.0.0a1/docs/userguide/canvas.rst +1365 -0
- celery_asyncio-6.0.0a1/docs/userguide/concurrency/eventlet.rst +71 -0
- celery_asyncio-6.0.0a1/docs/userguide/concurrency/gevent.rst +79 -0
- celery_asyncio-6.0.0a1/docs/userguide/concurrency/index.rst +42 -0
- celery_asyncio-6.0.0a1/docs/userguide/configuration.rst +4190 -0
- celery_asyncio-6.0.0a1/docs/userguide/daemonizing.rst +554 -0
- celery_asyncio-6.0.0a1/docs/userguide/debugging.rst +119 -0
- celery_asyncio-6.0.0a1/docs/userguide/extending.rst +929 -0
- celery_asyncio-6.0.0a1/docs/userguide/index.rst +30 -0
- celery_asyncio-6.0.0a1/docs/userguide/monitoring.rst +837 -0
- celery_asyncio-6.0.0a1/docs/userguide/optimizing.rst +237 -0
- celery_asyncio-6.0.0a1/docs/userguide/periodic-tasks.rst +485 -0
- celery_asyncio-6.0.0a1/docs/userguide/routing.rst +813 -0
- celery_asyncio-6.0.0a1/docs/userguide/security.rst +259 -0
- celery_asyncio-6.0.0a1/docs/userguide/signals.rst +861 -0
- celery_asyncio-6.0.0a1/docs/userguide/sphinx.rst +16 -0
- celery_asyncio-6.0.0a1/docs/userguide/tasks.rst +2312 -0
- celery_asyncio-6.0.0a1/docs/userguide/testing.rst +401 -0
- celery_asyncio-6.0.0a1/docs/userguide/workers.rst +1245 -0
- celery_asyncio-6.0.0a1/examples/README.rst +18 -0
- celery_asyncio-6.0.0a1/examples/app/myapp.py +45 -0
- celery_asyncio-6.0.0a1/examples/celery_http_gateway/README.rst +40 -0
- celery_asyncio-6.0.0a1/examples/celery_http_gateway/__init__.py +0 -0
- celery_asyncio-6.0.0a1/examples/celery_http_gateway/manage.py +15 -0
- celery_asyncio-6.0.0a1/examples/celery_http_gateway/settings.py +99 -0
- celery_asyncio-6.0.0a1/examples/celery_http_gateway/tasks.py +6 -0
- celery_asyncio-6.0.0a1/examples/celery_http_gateway/urls.py +17 -0
- celery_asyncio-6.0.0a1/examples/django/README.rst +66 -0
- celery_asyncio-6.0.0a1/examples/django/demoapp/__init__.py +0 -0
- celery_asyncio-6.0.0a1/examples/django/demoapp/migrations/0001_initial.py +21 -0
- celery_asyncio-6.0.0a1/examples/django/demoapp/migrations/__init__.py +0 -0
- celery_asyncio-6.0.0a1/examples/django/demoapp/models.py +5 -0
- celery_asyncio-6.0.0a1/examples/django/demoapp/tasks.py +32 -0
- celery_asyncio-6.0.0a1/examples/django/demoapp/views.py +1 -0
- celery_asyncio-6.0.0a1/examples/django/manage.py +11 -0
- celery_asyncio-6.0.0a1/examples/django/proj/__init__.py +5 -0
- celery_asyncio-6.0.0a1/examples/django/proj/celery.py +22 -0
- celery_asyncio-6.0.0a1/examples/django/proj/settings.py +138 -0
- celery_asyncio-6.0.0a1/examples/django/proj/urls.py +18 -0
- celery_asyncio-6.0.0a1/examples/django/proj/wsgi.py +30 -0
- celery_asyncio-6.0.0a1/examples/django/requirements.txt +3 -0
- celery_asyncio-6.0.0a1/examples/eventlet/README.rst +53 -0
- celery_asyncio-6.0.0a1/examples/eventlet/bulk_task_producer.py +63 -0
- celery_asyncio-6.0.0a1/examples/eventlet/celeryconfig.py +14 -0
- celery_asyncio-6.0.0a1/examples/eventlet/tasks.py +14 -0
- celery_asyncio-6.0.0a1/examples/eventlet/webcrawler.py +68 -0
- celery_asyncio-6.0.0a1/examples/gevent/README.rst +51 -0
- celery_asyncio-6.0.0a1/examples/gevent/celeryconfig.py +13 -0
- celery_asyncio-6.0.0a1/examples/gevent/tasks.py +15 -0
- celery_asyncio-6.0.0a1/examples/next-steps/proj/__init__.py +0 -0
- celery_asyncio-6.0.0a1/examples/next-steps/proj/celery.py +14 -0
- celery_asyncio-6.0.0a1/examples/next-steps/proj/tasks.py +16 -0
- celery_asyncio-6.0.0a1/examples/next-steps/setup.py +39 -0
- celery_asyncio-6.0.0a1/examples/periodic-tasks/myapp.py +60 -0
- celery_asyncio-6.0.0a1/examples/pydantic/__init__.py +0 -0
- celery_asyncio-6.0.0a1/examples/pydantic/tasks.py +21 -0
- celery_asyncio-6.0.0a1/examples/quorum-queues/declare_queue.py +15 -0
- celery_asyncio-6.0.0a1/examples/quorum-queues/myapp.py +149 -0
- celery_asyncio-6.0.0a1/examples/quorum-queues/setup_cluster.sh +117 -0
- celery_asyncio-6.0.0a1/examples/quorum-queues/test_cluster.sh +41 -0
- celery_asyncio-6.0.0a1/examples/resultgraph/tasks.py +103 -0
- celery_asyncio-6.0.0a1/examples/security/mysecureapp.py +53 -0
- celery_asyncio-6.0.0a1/examples/security/ssl/worker.key +51 -0
- celery_asyncio-6.0.0a1/examples/security/ssl/worker.pem +31 -0
- celery_asyncio-6.0.0a1/examples/stamping/config.py +7 -0
- celery_asyncio-6.0.0a1/examples/stamping/examples.py +46 -0
- celery_asyncio-6.0.0a1/examples/stamping/myapp.py +51 -0
- celery_asyncio-6.0.0a1/examples/stamping/revoke_example.py +75 -0
- celery_asyncio-6.0.0a1/examples/stamping/tasks.py +104 -0
- celery_asyncio-6.0.0a1/examples/stamping/visitors.py +67 -0
- celery_asyncio-6.0.0a1/examples/tutorial/tasks.py +12 -0
- celery_asyncio-6.0.0a1/extra/WindowsCMD-AzureWebJob/Celery/run.cmd +31 -0
- celery_asyncio-6.0.0a1/extra/WindowsCMD-AzureWebJob/Celery/settings.job +1 -0
- celery_asyncio-6.0.0a1/extra/WindowsCMD-AzureWebJob/CeleryBeat/run.cmd +39 -0
- celery_asyncio-6.0.0a1/extra/WindowsCMD-AzureWebJob/CeleryBeat/settings.job +1 -0
- celery_asyncio-6.0.0a1/extra/bash-completion/celery.bash +21 -0
- celery_asyncio-6.0.0a1/extra/generic-init.d/celerybeat +329 -0
- celery_asyncio-6.0.0a1/extra/generic-init.d/celeryd +411 -0
- celery_asyncio-6.0.0a1/extra/macOS/org.celeryq.beat.plist +29 -0
- celery_asyncio-6.0.0a1/extra/macOS/org.celeryq.worker.plist +29 -0
- celery_asyncio-6.0.0a1/extra/release/attribution.py +34 -0
- celery_asyncio-6.0.0a1/extra/release/gen-cert.sh +22 -0
- celery_asyncio-6.0.0a1/extra/release/sphinx2rst_config.py +10 -0
- celery_asyncio-6.0.0a1/extra/supervisord/celery.sh +3 -0
- celery_asyncio-6.0.0a1/extra/supervisord/celerybeat.conf +25 -0
- celery_asyncio-6.0.0a1/extra/supervisord/celeryd.conf +34 -0
- celery_asyncio-6.0.0a1/extra/supervisord/supervisord.conf +28 -0
- celery_asyncio-6.0.0a1/extra/systemd/celery.conf +16 -0
- celery_asyncio-6.0.0a1/extra/systemd/celery.service +22 -0
- celery_asyncio-6.0.0a1/extra/systemd/celery.tmpfiles +2 -0
- celery_asyncio-6.0.0a1/extra/systemd/celerybeat.service +17 -0
- celery_asyncio-6.0.0a1/extra/zsh-completion/celery.zsh +133 -0
- celery_asyncio-6.0.0a1/helm-chart/.helmignore +23 -0
- celery_asyncio-6.0.0a1/helm-chart/Chart.yaml +6 -0
- celery_asyncio-6.0.0a1/helm-chart/README.rst +77 -0
- celery_asyncio-6.0.0a1/helm-chart/templates/_helpers.tpl +62 -0
- celery_asyncio-6.0.0a1/helm-chart/templates/configmap.yaml +8 -0
- celery_asyncio-6.0.0a1/helm-chart/templates/deployment.yaml +70 -0
- celery_asyncio-6.0.0a1/helm-chart/templates/secret.yaml +13 -0
- celery_asyncio-6.0.0a1/helm-chart/templates/serviceaccount.yaml +14 -0
- celery_asyncio-6.0.0a1/helm-chart/values.yaml +93 -0
- celery_asyncio-6.0.0a1/pyproject.toml +268 -0
- celery_asyncio-6.0.0a1/requirements/README.rst +65 -0
- celery_asyncio-6.0.0a1/requirements/default.txt +10 -0
- celery_asyncio-6.0.0a1/requirements/deps/mock.txt +1 -0
- celery_asyncio-6.0.0a1/requirements/dev.txt +5 -0
- celery_asyncio-6.0.0a1/requirements/docs.txt +9 -0
- celery_asyncio-6.0.0a1/requirements/extras/arangodb.txt +1 -0
- celery_asyncio-6.0.0a1/requirements/extras/auth.txt +1 -0
- celery_asyncio-6.0.0a1/requirements/extras/azureblockblob.txt +2 -0
- celery_asyncio-6.0.0a1/requirements/extras/brotli.txt +2 -0
- celery_asyncio-6.0.0a1/requirements/extras/cassandra.txt +1 -0
- celery_asyncio-6.0.0a1/requirements/extras/consul.txt +1 -0
- celery_asyncio-6.0.0a1/requirements/extras/cosmosdbsql.txt +1 -0
- celery_asyncio-6.0.0a1/requirements/extras/couchbase.txt +1 -0
- celery_asyncio-6.0.0a1/requirements/extras/couchdb.txt +1 -0
- celery_asyncio-6.0.0a1/requirements/extras/django.txt +1 -0
- celery_asyncio-6.0.0a1/requirements/extras/dynamodb.txt +1 -0
- celery_asyncio-6.0.0a1/requirements/extras/elasticsearch.txt +2 -0
- celery_asyncio-6.0.0a1/requirements/extras/eventlet.txt +1 -0
- celery_asyncio-6.0.0a1/requirements/extras/gcs.txt +4 -0
- celery_asyncio-6.0.0a1/requirements/extras/gevent.txt +1 -0
- celery_asyncio-6.0.0a1/requirements/extras/librabbitmq.txt +1 -0
- celery_asyncio-6.0.0a1/requirements/extras/memcache.txt +1 -0
- celery_asyncio-6.0.0a1/requirements/extras/mongodb.txt +1 -0
- celery_asyncio-6.0.0a1/requirements/extras/msgpack.txt +1 -0
- celery_asyncio-6.0.0a1/requirements/extras/pydantic.txt +2 -0
- celery_asyncio-6.0.0a1/requirements/extras/pymemcache.txt +1 -0
- celery_asyncio-6.0.0a1/requirements/extras/pyro.txt +1 -0
- celery_asyncio-6.0.0a1/requirements/extras/pytest.txt +1 -0
- celery_asyncio-6.0.0a1/requirements/extras/redis.txt +1 -0
- celery_asyncio-6.0.0a1/requirements/extras/s3.txt +1 -0
- celery_asyncio-6.0.0a1/requirements/extras/slmq.txt +1 -0
- celery_asyncio-6.0.0a1/requirements/extras/solar.txt +1 -0
- celery_asyncio-6.0.0a1/requirements/extras/sphinxautobuild.txt +1 -0
- celery_asyncio-6.0.0a1/requirements/extras/sqlalchemy.txt +1 -0
- celery_asyncio-6.0.0a1/requirements/extras/sqs.txt +5 -0
- celery_asyncio-6.0.0a1/requirements/extras/tblib.txt +1 -0
- celery_asyncio-6.0.0a1/requirements/extras/thread.txt +1 -0
- celery_asyncio-6.0.0a1/requirements/extras/yaml.txt +1 -0
- celery_asyncio-6.0.0a1/requirements/extras/zeromq.txt +1 -0
- celery_asyncio-6.0.0a1/requirements/extras/zookeeper.txt +1 -0
- celery_asyncio-6.0.0a1/requirements/extras/zstd.txt +1 -0
- celery_asyncio-6.0.0a1/requirements/pkgutils.txt +11 -0
- celery_asyncio-6.0.0a1/requirements/security.txt +1 -0
- celery_asyncio-6.0.0a1/requirements/test-ci-base.txt +7 -0
- celery_asyncio-6.0.0a1/requirements/test-ci-default.txt +25 -0
- celery_asyncio-6.0.0a1/requirements/test-integration.txt +6 -0
- celery_asyncio-6.0.0a1/requirements/test-pypy3.txt +1 -0
- celery_asyncio-6.0.0a1/requirements/test.txt +19 -0
- celery_asyncio-6.0.0a1/setup.cfg +43 -0
- celery_asyncio-6.0.0a1/t/__init__.py +0 -0
- celery_asyncio-6.0.0a1/t/benchmarks/bench_worker.py +110 -0
- celery_asyncio-6.0.0a1/t/integration/__init__.py +0 -0
- celery_asyncio-6.0.0a1/t/integration/conftest.py +106 -0
- celery_asyncio-6.0.0a1/t/integration/tasks.py +527 -0
- celery_asyncio-6.0.0a1/t/integration/test_backend.py +40 -0
- celery_asyncio-6.0.0a1/t/integration/test_canvas.py +3747 -0
- celery_asyncio-6.0.0a1/t/integration/test_inspect.py +237 -0
- celery_asyncio-6.0.0a1/t/integration/test_loader.py +38 -0
- celery_asyncio-6.0.0a1/t/integration/test_mem_leak_in_exception_handling.py +261 -0
- celery_asyncio-6.0.0a1/t/integration/test_native_delayed_delivery_binding.py +190 -0
- celery_asyncio-6.0.0a1/t/integration/test_quorum_queue_qos_cluster_simulation.py +151 -0
- celery_asyncio-6.0.0a1/t/integration/test_rabbitmq_chord_unlock_routing.py +155 -0
- celery_asyncio-6.0.0a1/t/integration/test_rabbitmq_default_queue_type_fallback.py +86 -0
- celery_asyncio-6.0.0a1/t/integration/test_security.py +118 -0
- celery_asyncio-6.0.0a1/t/integration/test_serialization.py +54 -0
- celery_asyncio-6.0.0a1/t/integration/test_serialization_config.py +5 -0
- celery_asyncio-6.0.0a1/t/integration/test_tasks.py +770 -0
- celery_asyncio-6.0.0a1/t/integration/test_worker.py +18 -0
- celery_asyncio-6.0.0a1/t/integration/test_worker_config.py +12 -0
- celery_asyncio-6.0.0a1/t/skip.py +6 -0
- celery_asyncio-6.0.0a1/t/smoke/__init__.py +0 -0
- celery_asyncio-6.0.0a1/t/smoke/conftest.py +155 -0
- celery_asyncio-6.0.0a1/t/smoke/operations/__init__.py +0 -0
- celery_asyncio-6.0.0a1/t/smoke/operations/task_termination.py +48 -0
- celery_asyncio-6.0.0a1/t/smoke/operations/worker_kill.py +47 -0
- celery_asyncio-6.0.0a1/t/smoke/operations/worker_restart.py +42 -0
- celery_asyncio-6.0.0a1/t/smoke/redis.conf +6 -0
- celery_asyncio-6.0.0a1/t/smoke/signals.py +28 -0
- celery_asyncio-6.0.0a1/t/smoke/tasks.py +81 -0
- celery_asyncio-6.0.0a1/t/smoke/tests/__init__.py +0 -0
- celery_asyncio-6.0.0a1/t/smoke/tests/failover/__init__.py +0 -0
- celery_asyncio-6.0.0a1/t/smoke/tests/failover/test_broker_failover.py +60 -0
- celery_asyncio-6.0.0a1/t/smoke/tests/failover/test_worker_failover.py +55 -0
- celery_asyncio-6.0.0a1/t/smoke/tests/quorum_queues/__init__.py +0 -0
- celery_asyncio-6.0.0a1/t/smoke/tests/quorum_queues/conftest.py +119 -0
- celery_asyncio-6.0.0a1/t/smoke/tests/quorum_queues/test_native_delayed_delivery.py +283 -0
- celery_asyncio-6.0.0a1/t/smoke/tests/quorum_queues/test_quorum_queues.py +36 -0
- celery_asyncio-6.0.0a1/t/smoke/tests/stamping/__init__.py +0 -0
- celery_asyncio-6.0.0a1/t/smoke/tests/stamping/conftest.py +47 -0
- celery_asyncio-6.0.0a1/t/smoke/tests/stamping/signals.py +12 -0
- celery_asyncio-6.0.0a1/t/smoke/tests/stamping/tasks.py +22 -0
- celery_asyncio-6.0.0a1/t/smoke/tests/stamping/test_hybrid_cluster.py +160 -0
- celery_asyncio-6.0.0a1/t/smoke/tests/stamping/test_revoke.py +75 -0
- celery_asyncio-6.0.0a1/t/smoke/tests/stamping/test_visitor.py +40 -0
- celery_asyncio-6.0.0a1/t/smoke/tests/stamping/workers/__init__.py +0 -0
- celery_asyncio-6.0.0a1/t/smoke/tests/stamping/workers/legacy.py +57 -0
- celery_asyncio-6.0.0a1/t/smoke/tests/test_canvas.py +193 -0
- celery_asyncio-6.0.0a1/t/smoke/tests/test_consumer.py +147 -0
- celery_asyncio-6.0.0a1/t/smoke/tests/test_control.py +18 -0
- celery_asyncio-6.0.0a1/t/smoke/tests/test_signals.py +60 -0
- celery_asyncio-6.0.0a1/t/smoke/tests/test_tasks.py +146 -0
- celery_asyncio-6.0.0a1/t/smoke/tests/test_thread_safe.py +73 -0
- celery_asyncio-6.0.0a1/t/smoke/tests/test_worker.py +440 -0
- celery_asyncio-6.0.0a1/t/smoke/workers/__init__.py +0 -0
- celery_asyncio-6.0.0a1/t/smoke/workers/alt.py +58 -0
- celery_asyncio-6.0.0a1/t/smoke/workers/dev.py +85 -0
- celery_asyncio-6.0.0a1/t/smoke/workers/docker/dev +51 -0
- celery_asyncio-6.0.0a1/t/smoke/workers/docker/pypi +51 -0
- celery_asyncio-6.0.0a1/t/smoke/workers/latest.py +62 -0
- celery_asyncio-6.0.0a1/t/smoke/workers/other.py +62 -0
- celery_asyncio-6.0.0a1/t/unit/__init__.py +0 -0
- celery_asyncio-6.0.0a1/t/unit/app/__init__.py +0 -0
- celery_asyncio-6.0.0a1/t/unit/app/test_amqp.py +455 -0
- celery_asyncio-6.0.0a1/t/unit/app/test_annotations.py +52 -0
- celery_asyncio-6.0.0a1/t/unit/app/test_app.py +1760 -0
- celery_asyncio-6.0.0a1/t/unit/app/test_backends.py +136 -0
- celery_asyncio-6.0.0a1/t/unit/app/test_beat.py +955 -0
- celery_asyncio-6.0.0a1/t/unit/app/test_builtins.py +184 -0
- celery_asyncio-6.0.0a1/t/unit/app/test_celery.py +17 -0
- celery_asyncio-6.0.0a1/t/unit/app/test_control.py +582 -0
- celery_asyncio-6.0.0a1/t/unit/app/test_defaults.py +47 -0
- celery_asyncio-6.0.0a1/t/unit/app/test_exceptions.py +33 -0
- celery_asyncio-6.0.0a1/t/unit/app/test_loaders.py +307 -0
- celery_asyncio-6.0.0a1/t/unit/app/test_log.py +359 -0
- celery_asyncio-6.0.0a1/t/unit/app/test_preload_cli.py +56 -0
- celery_asyncio-6.0.0a1/t/unit/app/test_registry.py +77 -0
- celery_asyncio-6.0.0a1/t/unit/app/test_routes.py +234 -0
- celery_asyncio-6.0.0a1/t/unit/app/test_schedules.py +1016 -0
- celery_asyncio-6.0.0a1/t/unit/app/test_trace.py +134 -0
- celery_asyncio-6.0.0a1/t/unit/app/test_utils.py +59 -0
- celery_asyncio-6.0.0a1/t/unit/apps/__init__.py +0 -0
- celery_asyncio-6.0.0a1/t/unit/apps/test_multi.py +441 -0
- celery_asyncio-6.0.0a1/t/unit/backends/__init__.py +0 -0
- celery_asyncio-6.0.0a1/t/unit/backends/test_arangodb.py +228 -0
- celery_asyncio-6.0.0a1/t/unit/backends/test_asynchronous.py +271 -0
- celery_asyncio-6.0.0a1/t/unit/backends/test_azureblockblob.py +228 -0
- celery_asyncio-6.0.0a1/t/unit/backends/test_base.py +1647 -0
- celery_asyncio-6.0.0a1/t/unit/backends/test_cache.py +284 -0
- celery_asyncio-6.0.0a1/t/unit/backends/test_cassandra.py +278 -0
- celery_asyncio-6.0.0a1/t/unit/backends/test_consul.py +43 -0
- celery_asyncio-6.0.0a1/t/unit/backends/test_cosmosdbsql.py +139 -0
- celery_asyncio-6.0.0a1/t/unit/backends/test_couchbase.py +138 -0
- celery_asyncio-6.0.0a1/t/unit/backends/test_couchdb.py +213 -0
- celery_asyncio-6.0.0a1/t/unit/backends/test_database.py +469 -0
- celery_asyncio-6.0.0a1/t/unit/backends/test_dynamodb.py +633 -0
- celery_asyncio-6.0.0a1/t/unit/backends/test_elasticsearch.py +972 -0
- celery_asyncio-6.0.0a1/t/unit/backends/test_filesystem.py +130 -0
- celery_asyncio-6.0.0a1/t/unit/backends/test_gcs.py +589 -0
- celery_asyncio-6.0.0a1/t/unit/backends/test_mongodb.py +775 -0
- celery_asyncio-6.0.0a1/t/unit/backends/test_redis.py +1419 -0
- celery_asyncio-6.0.0a1/t/unit/backends/test_rpc.py +114 -0
- celery_asyncio-6.0.0a1/t/unit/backends/test_s3.py +186 -0
- celery_asyncio-6.0.0a1/t/unit/bin/__init__.py +0 -0
- celery_asyncio-6.0.0a1/t/unit/bin/celery.py +1 -0
- celery_asyncio-6.0.0a1/t/unit/bin/proj/__init__.py +3 -0
- celery_asyncio-6.0.0a1/t/unit/bin/proj/app.py +4 -0
- celery_asyncio-6.0.0a1/t/unit/bin/proj/app2.py +1 -0
- celery_asyncio-6.0.0a1/t/unit/bin/proj/app_with_custom_cmds.py +24 -0
- celery_asyncio-6.0.0a1/t/unit/bin/proj/daemon.py +4 -0
- celery_asyncio-6.0.0a1/t/unit/bin/proj/daemon_config.py +22 -0
- celery_asyncio-6.0.0a1/t/unit/bin/proj/pyramid_celery_app.py +53 -0
- celery_asyncio-6.0.0a1/t/unit/bin/proj/scheduler.py +6 -0
- celery_asyncio-6.0.0a1/t/unit/bin/test_beat.py +34 -0
- celery_asyncio-6.0.0a1/t/unit/bin/test_control.py +82 -0
- celery_asyncio-6.0.0a1/t/unit/bin/test_daemonization.py +22 -0
- celery_asyncio-6.0.0a1/t/unit/bin/test_multi.py +0 -0
- celery_asyncio-6.0.0a1/t/unit/bin/test_worker.py +127 -0
- celery_asyncio-6.0.0a1/t/unit/concurrency/__init__.py +0 -0
- celery_asyncio-6.0.0a1/t/unit/concurrency/test_concurrency.py +188 -0
- celery_asyncio-6.0.0a1/t/unit/concurrency/test_eventlet.py +165 -0
- celery_asyncio-6.0.0a1/t/unit/concurrency/test_gevent.py +151 -0
- celery_asyncio-6.0.0a1/t/unit/concurrency/test_pool.py +72 -0
- celery_asyncio-6.0.0a1/t/unit/concurrency/test_prefork.py +625 -0
- celery_asyncio-6.0.0a1/t/unit/concurrency/test_solo.py +31 -0
- celery_asyncio-6.0.0a1/t/unit/concurrency/test_thread.py +31 -0
- celery_asyncio-6.0.0a1/t/unit/conftest.py +787 -0
- celery_asyncio-6.0.0a1/t/unit/contrib/__init__.py +0 -0
- celery_asyncio-6.0.0a1/t/unit/contrib/django/__init__.py +0 -0
- celery_asyncio-6.0.0a1/t/unit/contrib/django/test_task.py +32 -0
- celery_asyncio-6.0.0a1/t/unit/contrib/proj/__init__.py +0 -0
- celery_asyncio-6.0.0a1/t/unit/contrib/proj/conf.py +7 -0
- celery_asyncio-6.0.0a1/t/unit/contrib/proj/contents.rst +7 -0
- celery_asyncio-6.0.0a1/t/unit/contrib/proj/foo.py +21 -0
- celery_asyncio-6.0.0a1/t/unit/contrib/proj/xyzzy.py +8 -0
- celery_asyncio-6.0.0a1/t/unit/contrib/test_abortable.py +44 -0
- celery_asyncio-6.0.0a1/t/unit/contrib/test_migrate.py +304 -0
- celery_asyncio-6.0.0a1/t/unit/contrib/test_pytest.py +31 -0
- celery_asyncio-6.0.0a1/t/unit/contrib/test_rdb.py +108 -0
- celery_asyncio-6.0.0a1/t/unit/contrib/test_sphinx.py +30 -0
- celery_asyncio-6.0.0a1/t/unit/contrib/test_worker.py +59 -0
- celery_asyncio-6.0.0a1/t/unit/events/__init__.py +0 -0
- celery_asyncio-6.0.0a1/t/unit/events/test_cursesmon.py +62 -0
- celery_asyncio-6.0.0a1/t/unit/events/test_dumper.py +70 -0
- celery_asyncio-6.0.0a1/t/unit/events/test_events.py +414 -0
- celery_asyncio-6.0.0a1/t/unit/events/test_snapshot.py +121 -0
- celery_asyncio-6.0.0a1/t/unit/events/test_state.py +699 -0
- celery_asyncio-6.0.0a1/t/unit/fixups/__init__.py +0 -0
- celery_asyncio-6.0.0a1/t/unit/fixups/test_django.py +377 -0
- celery_asyncio-6.0.0a1/t/unit/security/__init__.py +137 -0
- celery_asyncio-6.0.0a1/t/unit/security/case.py +7 -0
- celery_asyncio-6.0.0a1/t/unit/security/test_certificate.py +109 -0
- celery_asyncio-6.0.0a1/t/unit/security/test_key.py +45 -0
- celery_asyncio-6.0.0a1/t/unit/security/test_security.py +177 -0
- celery_asyncio-6.0.0a1/t/unit/security/test_serialization.py +71 -0
- celery_asyncio-6.0.0a1/t/unit/tasks/__init__.py +0 -0
- celery_asyncio-6.0.0a1/t/unit/tasks/test_canvas.py +1960 -0
- celery_asyncio-6.0.0a1/t/unit/tasks/test_chord.py +391 -0
- celery_asyncio-6.0.0a1/t/unit/tasks/test_context.py +86 -0
- celery_asyncio-6.0.0a1/t/unit/tasks/test_result.py +1059 -0
- celery_asyncio-6.0.0a1/t/unit/tasks/test_stamping.py +1315 -0
- celery_asyncio-6.0.0a1/t/unit/tasks/test_states.py +39 -0
- celery_asyncio-6.0.0a1/t/unit/tasks/test_tasks.py +1706 -0
- celery_asyncio-6.0.0a1/t/unit/tasks/test_trace.py +665 -0
- celery_asyncio-6.0.0a1/t/unit/tasks/unit_tasks.py +6 -0
- celery_asyncio-6.0.0a1/t/unit/test_canvas.py +33 -0
- celery_asyncio-6.0.0a1/t/unit/test_loops.py +57 -0
- celery_asyncio-6.0.0a1/t/unit/utils/__init__.py +0 -0
- celery_asyncio-6.0.0a1/t/unit/utils/test_annotations.py +96 -0
- celery_asyncio-6.0.0a1/t/unit/utils/test_collections.py +464 -0
- celery_asyncio-6.0.0a1/t/unit/utils/test_debug.py +86 -0
- celery_asyncio-6.0.0a1/t/unit/utils/test_deprecated.py +68 -0
- celery_asyncio-6.0.0a1/t/unit/utils/test_dispatcher.py +197 -0
- celery_asyncio-6.0.0a1/t/unit/utils/test_functional.py +490 -0
- celery_asyncio-6.0.0a1/t/unit/utils/test_graph.py +70 -0
- celery_asyncio-6.0.0a1/t/unit/utils/test_imports.py +123 -0
- celery_asyncio-6.0.0a1/t/unit/utils/test_iso8601.py +76 -0
- celery_asyncio-6.0.0a1/t/unit/utils/test_local.py +355 -0
- celery_asyncio-6.0.0a1/t/unit/utils/test_nodenames.py +10 -0
- celery_asyncio-6.0.0a1/t/unit/utils/test_objects.py +9 -0
- celery_asyncio-6.0.0a1/t/unit/utils/test_pickle.py +47 -0
- celery_asyncio-6.0.0a1/t/unit/utils/test_platforms.py +1059 -0
- celery_asyncio-6.0.0a1/t/unit/utils/test_saferepr.py +212 -0
- celery_asyncio-6.0.0a1/t/unit/utils/test_serialization.py +116 -0
- celery_asyncio-6.0.0a1/t/unit/utils/test_sysinfo.py +35 -0
- celery_asyncio-6.0.0a1/t/unit/utils/test_term.py +87 -0
- celery_asyncio-6.0.0a1/t/unit/utils/test_text.py +81 -0
- celery_asyncio-6.0.0a1/t/unit/utils/test_threads.py +103 -0
- celery_asyncio-6.0.0a1/t/unit/utils/test_time.py +401 -0
- celery_asyncio-6.0.0a1/t/unit/utils/test_timer2.py +105 -0
- celery_asyncio-6.0.0a1/t/unit/utils/test_utils.py +24 -0
- celery_asyncio-6.0.0a1/t/unit/worker/__init__.py +0 -0
- celery_asyncio-6.0.0a1/t/unit/worker/test_autoscale.py +288 -0
- celery_asyncio-6.0.0a1/t/unit/worker/test_bootsteps.py +364 -0
- celery_asyncio-6.0.0a1/t/unit/worker/test_components.py +91 -0
- celery_asyncio-6.0.0a1/t/unit/worker/test_consumer.py +1293 -0
- celery_asyncio-6.0.0a1/t/unit/worker/test_control.py +817 -0
- celery_asyncio-6.0.0a1/t/unit/worker/test_heartbeat.py +93 -0
- celery_asyncio-6.0.0a1/t/unit/worker/test_loops.py +550 -0
- celery_asyncio-6.0.0a1/t/unit/worker/test_native_delayed_delivery.py +468 -0
- celery_asyncio-6.0.0a1/t/unit/worker/test_request.py +1403 -0
- celery_asyncio-6.0.0a1/t/unit/worker/test_revoke.py +10 -0
- celery_asyncio-6.0.0a1/t/unit/worker/test_state.py +222 -0
- celery_asyncio-6.0.0a1/t/unit/worker/test_strategy.py +358 -0
- celery_asyncio-6.0.0a1/t/unit/worker/test_worker.py +1244 -0
- celery_asyncio-6.0.0a1/tox.ini +134 -0
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"includeCoAuthoredBy": false,
|
|
3
|
+
"permissions": {
|
|
4
|
+
"allow": [
|
|
5
|
+
"Bash(pip install:*)",
|
|
6
|
+
"Bash(python3:*)",
|
|
7
|
+
"Bash(.venv/bin/pip install:*)",
|
|
8
|
+
"Bash(.venv/bin/pytest t/unit/contrib/test_pytest.py -v)",
|
|
9
|
+
"Bash(.venv/bin/python:*)",
|
|
10
|
+
"Bash(.venv/bin/pytest t/unit/contrib/ -v --collect-only)",
|
|
11
|
+
"Bash(.venv/bin/pytest t/integration/test_countdown_fixture_reuse.py -v)",
|
|
12
|
+
"Bash(.venv/bin/pytest t/integration/test_countdown_fixture_reuse.py -v --tb=short)",
|
|
13
|
+
"Bash(.venv/bin/pytest t/integration/test_tasks.py::test_tasks::test_simple_call -v)",
|
|
14
|
+
"Bash(.venv/bin/pytest t/integration/test_countdown_fixture_reuse.py --fixtures)",
|
|
15
|
+
"Bash(.venv/bin/pytest t/unit/contrib/test_countdown_fixture_reuse.py -v --tb=short)",
|
|
16
|
+
"Bash(.venv/bin/pytest t/unit/contrib/test_countdown_fixture_reuse.py -v --collect-only)",
|
|
17
|
+
"Bash(.venv/bin/pytest t/unit/contrib/test_countdown_with_fixture.py -v --tb=short)",
|
|
18
|
+
"Bash(.venv/bin/pytest t/unit/contrib/test_countdown_with_fixture.py -v --tb=short -p no:pytest_celery)",
|
|
19
|
+
"Bash(redis-cli:*)",
|
|
20
|
+
"Bash(.venv/bin/pytest:*)",
|
|
21
|
+
"Bash(grep:*)",
|
|
22
|
+
"Bash(find:*)",
|
|
23
|
+
"Bash(git checkout:*)",
|
|
24
|
+
"Bash(git add:*)",
|
|
25
|
+
"Bash(git commit -m \"$\\(cat <<''EOF''\nAdd general interface for native delayed delivery\n\nThis adds a transport-agnostic interface for native delayed delivery,\nallowing any Kombu transport to implement delayed message delivery\nwithout being tied to RabbitMQ-specific infrastructure.\n\nChanges:\n- Add new config `broker_native_delayed_delivery_enabled` \\(default: False\\)\n- Add `x-celery-delay-seconds` message header for transports to read\n- Add utility module `celery/utils/native_delayed_delivery.py` with\n support detection and validation functions\n- Update DelayedDelivery bootstep to use new transport interface if\n available, falling back to legacy Kombu functions\n\nThe existing quorum queue auto-detection remains functional for backward\ncompatibility. The new interface is additive - both the delay header and\nexisting routing key transformation can run together.\n\nExpected Kombu transport interface:\n- `transport.supports_native_delayed_delivery` property\n- `transport.setup_native_delayed_delivery\\(connection, queues, **options\\)`\nEOF\n\\)\")",
|
|
26
|
+
"Bash(git push:*)",
|
|
27
|
+
"Bash(git commit:*)",
|
|
28
|
+
"Bash(git pull:*)",
|
|
29
|
+
"Bash(wc:*)",
|
|
30
|
+
"Bash(git -C /home/ohaas/e1+/celery log --oneline -1)",
|
|
31
|
+
"Bash(git branch:*)",
|
|
32
|
+
"Bash(uv build:*)"
|
|
33
|
+
],
|
|
34
|
+
"deny": [],
|
|
35
|
+
"ask": []
|
|
36
|
+
}
|
|
37
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
.DS_Store
|
|
2
|
+
*.pyc
|
|
3
|
+
*$py.class
|
|
4
|
+
*~
|
|
5
|
+
.*.sw[pon]
|
|
6
|
+
dist/
|
|
7
|
+
*.egg-info
|
|
8
|
+
*.egg
|
|
9
|
+
*.egg/
|
|
10
|
+
*.eggs/
|
|
11
|
+
build/
|
|
12
|
+
.build/
|
|
13
|
+
_build/
|
|
14
|
+
pip-log.txt
|
|
15
|
+
.directory
|
|
16
|
+
erl_crash.dump
|
|
17
|
+
*.db
|
|
18
|
+
Documentation/
|
|
19
|
+
.tox/
|
|
20
|
+
.ropeproject/
|
|
21
|
+
.project
|
|
22
|
+
.pydevproject
|
|
23
|
+
.idea/
|
|
24
|
+
.coverage
|
|
25
|
+
celery/tests/cover/
|
|
26
|
+
.ve*
|
|
27
|
+
cover/
|
|
28
|
+
.vagrant/
|
|
29
|
+
.cache/
|
|
30
|
+
htmlcov/
|
|
31
|
+
coverage.xml
|
|
32
|
+
test.db
|
|
33
|
+
.git/
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# http://editorconfig.org
|
|
2
|
+
|
|
3
|
+
root = true
|
|
4
|
+
|
|
5
|
+
[*]
|
|
6
|
+
indent_style = space
|
|
7
|
+
indent_size = 4
|
|
8
|
+
trim_trailing_whitespace = true
|
|
9
|
+
insert_final_newline = true
|
|
10
|
+
charset = utf-8
|
|
11
|
+
end_of_line = lf
|
|
12
|
+
max_line_length = 117
|
|
13
|
+
|
|
14
|
+
[Makefile]
|
|
15
|
+
indent_style = tab
|
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: Bug Report
|
|
3
|
+
about: Is something wrong with Celery?
|
|
4
|
+
title: ''
|
|
5
|
+
labels: 'Issue Type: Bug Report'
|
|
6
|
+
assignees: ''
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
<!--
|
|
11
|
+
Please fill this template entirely and do not erase parts of it.
|
|
12
|
+
We reserve the right to close without a response
|
|
13
|
+
bug reports which are incomplete.
|
|
14
|
+
-->
|
|
15
|
+
# Checklist
|
|
16
|
+
<!--
|
|
17
|
+
To check an item on the list replace [ ] with [x].
|
|
18
|
+
-->
|
|
19
|
+
- [ ] I have verified that the issue exists against the `main` branch of Celery.
|
|
20
|
+
- [ ] This has already been asked to the [discussions forum](https://github.com/celery/celery/discussions) first.
|
|
21
|
+
- [ ] I have read the relevant section in the
|
|
22
|
+
[contribution guide](https://docs.celeryq.dev/en/main/contributing.html#other-bugs)
|
|
23
|
+
on reporting bugs.
|
|
24
|
+
- [ ] I have checked the [issues list](https://github.com/celery/celery/issues?q=is%3Aissue+label%3A%22Issue+Type%3A+Bug+Report%22+-label%3A%22Category%3A+Documentation%22)
|
|
25
|
+
for similar or identical bug reports.
|
|
26
|
+
- [ ] I have checked the [pull requests list](https://github.com/celery/celery/pulls?q=is%3Apr+label%3A%22PR+Type%3A+Bugfix%22+-label%3A%22Category%3A+Documentation%22)
|
|
27
|
+
for existing proposed fixes.
|
|
28
|
+
- [ ] I have checked the [commit log](https://github.com/celery/celery/commits/main)
|
|
29
|
+
to find out if the bug was already fixed in the main branch.
|
|
30
|
+
- [ ] I have included all related issues and possible duplicate issues
|
|
31
|
+
in this issue (If there are none, check this box anyway).
|
|
32
|
+
- [ ] I have tried to reproduce the issue with [pytest-celery](https://docs.celeryq.dev/projects/pytest-celery/en/latest/userguide/celery-bug-report.html) and added the reproduction script below.
|
|
33
|
+
|
|
34
|
+
## Mandatory Debugging Information
|
|
35
|
+
|
|
36
|
+
- [ ] I have included the output of ``celery -A proj report`` in the issue.
|
|
37
|
+
(if you are not able to do this, then at least specify the Celery
|
|
38
|
+
version affected).
|
|
39
|
+
- [ ] I have verified that the issue exists against the `main` branch of Celery.
|
|
40
|
+
- [ ] I have included the contents of ``pip freeze`` in the issue.
|
|
41
|
+
- [ ] I have included all the versions of all the external dependencies required
|
|
42
|
+
to reproduce this bug.
|
|
43
|
+
|
|
44
|
+
## Optional Debugging Information
|
|
45
|
+
<!--
|
|
46
|
+
Try some of the below if you think they are relevant.
|
|
47
|
+
It will help us figure out the scope of the bug and how many users it affects.
|
|
48
|
+
-->
|
|
49
|
+
- [ ] I have tried reproducing the issue on more than one Python version
|
|
50
|
+
and/or implementation.
|
|
51
|
+
- [ ] I have tried reproducing the issue on more than one message broker and/or
|
|
52
|
+
result backend.
|
|
53
|
+
- [ ] I have tried reproducing the issue on more than one version of the message
|
|
54
|
+
broker and/or result backend.
|
|
55
|
+
- [ ] I have tried reproducing the issue on more than one operating system.
|
|
56
|
+
- [ ] I have tried reproducing the issue on more than one workers pool.
|
|
57
|
+
- [ ] I have tried reproducing the issue with autoscaling, retries,
|
|
58
|
+
ETA/Countdown & rate limits disabled.
|
|
59
|
+
- [ ] I have tried reproducing the issue after downgrading
|
|
60
|
+
and/or upgrading Celery and its dependencies.
|
|
61
|
+
|
|
62
|
+
## Related Issues and Possible Duplicates
|
|
63
|
+
<!--
|
|
64
|
+
Please make sure to search and mention any related issues
|
|
65
|
+
or possible duplicates to this issue as requested by the checklist above.
|
|
66
|
+
|
|
67
|
+
This may or may not include issues in other repositories that the Celery project
|
|
68
|
+
maintains or other repositories that are dependencies of Celery.
|
|
69
|
+
|
|
70
|
+
If you don't know how to mention issues, please refer to Github's documentation
|
|
71
|
+
on the subject: https://help.github.com/en/articles/autolinked-references-and-urls#issues-and-pull-requests
|
|
72
|
+
-->
|
|
73
|
+
|
|
74
|
+
#### Related Issues
|
|
75
|
+
|
|
76
|
+
- None
|
|
77
|
+
|
|
78
|
+
#### Possible Duplicates
|
|
79
|
+
|
|
80
|
+
- None
|
|
81
|
+
|
|
82
|
+
## Environment & Settings
|
|
83
|
+
<!-- Include the contents of celery --version below -->
|
|
84
|
+
**Celery version**:
|
|
85
|
+
<!-- Include the output of celery -A proj report below -->
|
|
86
|
+
<details>
|
|
87
|
+
<summary><b><code>celery report</code> Output:</b></summary>
|
|
88
|
+
<p>
|
|
89
|
+
|
|
90
|
+
```
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
</p>
|
|
94
|
+
</details>
|
|
95
|
+
|
|
96
|
+
# Steps to Reproduce
|
|
97
|
+
|
|
98
|
+
## Required Dependencies
|
|
99
|
+
<!-- Please fill the required dependencies to reproduce this issue -->
|
|
100
|
+
- **Minimal Python Version**: N/A or Unknown
|
|
101
|
+
- **Minimal Celery Version**: N/A or Unknown
|
|
102
|
+
- **Minimal Kombu Version**: N/A or Unknown
|
|
103
|
+
- **Minimal Broker Version**: N/A or Unknown
|
|
104
|
+
- **Minimal Result Backend Version**: N/A or Unknown
|
|
105
|
+
- **Minimal OS and/or Kernel Version**: N/A or Unknown
|
|
106
|
+
- **Minimal Broker Client Version**: N/A or Unknown
|
|
107
|
+
- **Minimal Result Backend Client Version**: N/A or Unknown
|
|
108
|
+
|
|
109
|
+
### Python Packages
|
|
110
|
+
<!-- Please fill the contents of pip freeze below -->
|
|
111
|
+
<details>
|
|
112
|
+
<summary><b><code>pip freeze</code> Output:</b></summary>
|
|
113
|
+
<p>
|
|
114
|
+
|
|
115
|
+
```
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
</p>
|
|
119
|
+
</details>
|
|
120
|
+
|
|
121
|
+
### Other Dependencies
|
|
122
|
+
<!--
|
|
123
|
+
Please provide system dependencies, configuration files
|
|
124
|
+
and other dependency information if applicable
|
|
125
|
+
-->
|
|
126
|
+
<details>
|
|
127
|
+
<p>
|
|
128
|
+
N/A
|
|
129
|
+
</p>
|
|
130
|
+
</details>
|
|
131
|
+
|
|
132
|
+
## Minimally Reproducible Test Case
|
|
133
|
+
<!--
|
|
134
|
+
Please provide a reproducible test case.
|
|
135
|
+
Refer to the Reporting Bugs section in our contribution guide.
|
|
136
|
+
|
|
137
|
+
We prefer submitting test cases in the form of a PR to our integration test suite.
|
|
138
|
+
If you can provide one, please mention the PR number below.
|
|
139
|
+
If not, please attach the most minimal code example required to reproduce the issue below.
|
|
140
|
+
If the test case is too large, please include a link to a gist or a repository below.
|
|
141
|
+
|
|
142
|
+
Alternatively, the pytest-celery plugin can be used to create standalone reproduction scripts
|
|
143
|
+
that can be added to this report. See the pytest-celery documentation for more information at
|
|
144
|
+
pytest-celery.readthedocs.io
|
|
145
|
+
-->
|
|
146
|
+
|
|
147
|
+
<details>
|
|
148
|
+
<p>
|
|
149
|
+
|
|
150
|
+
```python
|
|
151
|
+
```
|
|
152
|
+
|
|
153
|
+
</p>
|
|
154
|
+
</details>
|
|
155
|
+
|
|
156
|
+
# Expected Behavior
|
|
157
|
+
<!-- Describe in detail what you expect to happen -->
|
|
158
|
+
|
|
159
|
+
# Actual Behavior
|
|
160
|
+
<!--
|
|
161
|
+
Describe in detail what actually happened.
|
|
162
|
+
Please include a backtrace and surround it with triple backticks (```).
|
|
163
|
+
In addition, include the Celery daemon logs, the broker logs,
|
|
164
|
+
the result backend logs and system logs below if they will help us debug
|
|
165
|
+
the issue.
|
|
166
|
+
-->
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: Documentation Bug Report
|
|
3
|
+
about: Is something wrong with our documentation?
|
|
4
|
+
title: ''
|
|
5
|
+
labels: 'Category: Documentation, Issue Type: Bug Report'
|
|
6
|
+
assignees: ''
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
<!--
|
|
11
|
+
Please fill this template entirely and do not erase parts of it.
|
|
12
|
+
We reserve the right to close without a response
|
|
13
|
+
bug reports which are incomplete.
|
|
14
|
+
-->
|
|
15
|
+
# Checklist
|
|
16
|
+
<!--
|
|
17
|
+
To check an item on the list replace [ ] with [x].
|
|
18
|
+
-->
|
|
19
|
+
|
|
20
|
+
- [ ] I have checked the [issues list](https://github.com/celery/celery/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3A%22Category%3A+Documentation%22+)
|
|
21
|
+
for similar or identical bug reports.
|
|
22
|
+
- [ ] I have checked the [pull requests list](https://github.com/celery/celery/pulls?q=is%3Apr+label%3A%22Category%3A+Documentation%22)
|
|
23
|
+
for existing proposed fixes.
|
|
24
|
+
- [ ] I have checked the [commit log](https://github.com/celery/celery/commits/main)
|
|
25
|
+
to find out if the bug was already fixed in the main branch.
|
|
26
|
+
- [ ] I have included all related issues and possible duplicate issues in this issue
|
|
27
|
+
(If there are none, check this box anyway).
|
|
28
|
+
|
|
29
|
+
## Related Issues and Possible Duplicates
|
|
30
|
+
<!--
|
|
31
|
+
Please make sure to search and mention any related issues
|
|
32
|
+
or possible duplicates to this issue as requested by the checklist above.
|
|
33
|
+
|
|
34
|
+
This may or may not include issues in other repositories that the Celery project
|
|
35
|
+
maintains or other repositories that are dependencies of Celery.
|
|
36
|
+
|
|
37
|
+
If you don't know how to mention issues, please refer to Github's documentation
|
|
38
|
+
on the subject: https://help.github.com/en/articles/autolinked-references-and-urls#issues-and-pull-requests
|
|
39
|
+
-->
|
|
40
|
+
|
|
41
|
+
#### Related Issues
|
|
42
|
+
|
|
43
|
+
- None
|
|
44
|
+
|
|
45
|
+
#### Possible Duplicates
|
|
46
|
+
|
|
47
|
+
- None
|
|
48
|
+
|
|
49
|
+
# Description
|
|
50
|
+
<!--
|
|
51
|
+
Please describe what's missing or incorrect about our documentation.
|
|
52
|
+
Include links and/or screenshots which will aid us to resolve the issue.
|
|
53
|
+
-->
|
|
54
|
+
|
|
55
|
+
# Suggestions
|
|
56
|
+
<!-- Please provide us suggestions for how to fix the documentation -->
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: Enhancement
|
|
3
|
+
about: Do you want to improve an existing feature?
|
|
4
|
+
title: ''
|
|
5
|
+
labels: 'Issue Type: Enhancement'
|
|
6
|
+
assignees: ''
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
<!--
|
|
11
|
+
Please fill this template entirely and do not erase parts of it.
|
|
12
|
+
We reserve the right to close without a response
|
|
13
|
+
enhancement requests which are incomplete.
|
|
14
|
+
-->
|
|
15
|
+
# Checklist
|
|
16
|
+
<!--
|
|
17
|
+
To check an item on the list replace [ ] with [x].
|
|
18
|
+
-->
|
|
19
|
+
|
|
20
|
+
- [ ] I have checked the [issues list](https://github.com/celery/celery/issues?q=is%3Aissue+label%3A%22Issue+Type%3A+Enhancement%22+-label%3A%22Category%3A+Documentation%22)
|
|
21
|
+
for similar or identical enhancement to an existing feature.
|
|
22
|
+
- [ ] I have checked the [pull requests list](https://github.com/celery/celery/pulls?q=is%3Apr+label%3A%22Issue+Type%3A+Enhancement%22+-label%3A%22Category%3A+Documentation%22)
|
|
23
|
+
for existing proposed enhancements.
|
|
24
|
+
- [ ] I have checked the [commit log](https://github.com/celery/celery/commits/main)
|
|
25
|
+
to find out if the same enhancement was already implemented in the
|
|
26
|
+
main branch.
|
|
27
|
+
- [ ] I have included all related issues and possible duplicate issues in this issue
|
|
28
|
+
(If there are none, check this box anyway).
|
|
29
|
+
|
|
30
|
+
## Related Issues and Possible Duplicates
|
|
31
|
+
<!--
|
|
32
|
+
Please make sure to search and mention any related issues
|
|
33
|
+
or possible duplicates to this issue as requested by the checklist above.
|
|
34
|
+
|
|
35
|
+
This may or may not include issues in other repositories that the Celery project
|
|
36
|
+
maintains or other repositories that are dependencies of Celery.
|
|
37
|
+
|
|
38
|
+
If you don't know how to mention issues, please refer to Github's documentation
|
|
39
|
+
on the subject: https://help.github.com/en/articles/autolinked-references-and-urls#issues-and-pull-requests
|
|
40
|
+
-->
|
|
41
|
+
|
|
42
|
+
#### Related Issues
|
|
43
|
+
|
|
44
|
+
- None
|
|
45
|
+
|
|
46
|
+
#### Possible Duplicates
|
|
47
|
+
|
|
48
|
+
- None
|
|
49
|
+
|
|
50
|
+
# Brief Summary
|
|
51
|
+
<!--
|
|
52
|
+
Please include a brief summary of what the enhancement is
|
|
53
|
+
and why it is needed.
|
|
54
|
+
-->
|
|
55
|
+
|
|
56
|
+
# Design
|
|
57
|
+
|
|
58
|
+
## Architectural Considerations
|
|
59
|
+
<!--
|
|
60
|
+
If more components other than Celery are involved,
|
|
61
|
+
describe them here and the effect it would have on Celery.
|
|
62
|
+
-->
|
|
63
|
+
None
|
|
64
|
+
|
|
65
|
+
## Proposed Behavior
|
|
66
|
+
<!--
|
|
67
|
+
Please describe in detail how this enhancement is going to change the behavior
|
|
68
|
+
of an existing feature.
|
|
69
|
+
Describe what happens in case of failures as well if applicable.
|
|
70
|
+
-->
|
|
71
|
+
|
|
72
|
+
## Proposed UI/UX
|
|
73
|
+
<!--
|
|
74
|
+
Please provide your ideas for the API, CLI options,
|
|
75
|
+
configuration key names etc. that will be adjusted for this enhancement.
|
|
76
|
+
-->
|
|
77
|
+
|
|
78
|
+
## Diagrams
|
|
79
|
+
<!--
|
|
80
|
+
Please include any diagrams that might be relevant
|
|
81
|
+
to the implementation of this enhancement such as:
|
|
82
|
+
* Class Diagrams
|
|
83
|
+
* Sequence Diagrams
|
|
84
|
+
* Activity Diagrams
|
|
85
|
+
You can drag and drop images into the text box to attach them to this issue.
|
|
86
|
+
-->
|
|
87
|
+
N/A
|
|
88
|
+
|
|
89
|
+
## Alternatives
|
|
90
|
+
<!--
|
|
91
|
+
If you have considered any alternative implementations
|
|
92
|
+
describe them in detail below.
|
|
93
|
+
-->
|
|
94
|
+
None
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: Feature Request
|
|
3
|
+
about: Do you need a new feature?
|
|
4
|
+
title: ''
|
|
5
|
+
labels: 'Issue Type: Feature Request'
|
|
6
|
+
assignees: ''
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
<!--
|
|
11
|
+
Please fill this template entirely and do not erase parts of it.
|
|
12
|
+
We reserve the right to close without a response
|
|
13
|
+
feature requests which are incomplete.
|
|
14
|
+
-->
|
|
15
|
+
# Checklist
|
|
16
|
+
<!--
|
|
17
|
+
To check an item on the list replace [ ] with [x].
|
|
18
|
+
-->
|
|
19
|
+
|
|
20
|
+
- [ ] I have checked the [issues list](https://github.com/celery/celery/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3A%22Issue+Type%3A+Feature+Request%22+)
|
|
21
|
+
for similar or identical feature requests.
|
|
22
|
+
- [ ] I have checked the [pull requests list](https://github.com/celery/celery/pulls?utf8=%E2%9C%93&q=is%3Apr+label%3A%22PR+Type%3A+Feature%22+)
|
|
23
|
+
for existing proposed implementations of this feature.
|
|
24
|
+
- [ ] I have checked the [commit log](https://github.com/celery/celery/commits/main)
|
|
25
|
+
to find out if the same feature was already implemented in the
|
|
26
|
+
main branch.
|
|
27
|
+
- [ ] I have included all related issues and possible duplicate issues
|
|
28
|
+
in this issue (If there are none, check this box anyway).
|
|
29
|
+
|
|
30
|
+
## Related Issues and Possible Duplicates
|
|
31
|
+
<!--
|
|
32
|
+
Please make sure to search and mention any related issues
|
|
33
|
+
or possible duplicates to this issue as requested by the checklist above.
|
|
34
|
+
|
|
35
|
+
This may or may not include issues in other repositories that the Celery project
|
|
36
|
+
maintains or other repositories that are dependencies of Celery.
|
|
37
|
+
|
|
38
|
+
If you don't know how to mention issues, please refer to Github's documentation
|
|
39
|
+
on the subject: https://help.github.com/en/articles/autolinked-references-and-urls#issues-and-pull-requests
|
|
40
|
+
-->
|
|
41
|
+
|
|
42
|
+
#### Related Issues
|
|
43
|
+
|
|
44
|
+
- None
|
|
45
|
+
|
|
46
|
+
#### Possible Duplicates
|
|
47
|
+
|
|
48
|
+
- None
|
|
49
|
+
|
|
50
|
+
# Brief Summary
|
|
51
|
+
<!--
|
|
52
|
+
Please include a brief summary of what the feature does
|
|
53
|
+
and why it is needed.
|
|
54
|
+
-->
|
|
55
|
+
|
|
56
|
+
# Design
|
|
57
|
+
|
|
58
|
+
## Architectural Considerations
|
|
59
|
+
<!--
|
|
60
|
+
If more components other than Celery are involved,
|
|
61
|
+
describe them here and the effect it would have on Celery.
|
|
62
|
+
-->
|
|
63
|
+
None
|
|
64
|
+
|
|
65
|
+
## Proposed Behavior
|
|
66
|
+
<!--
|
|
67
|
+
Please describe in detail how this feature is going to behave.
|
|
68
|
+
Describe what happens in case of failures as well if applicable.
|
|
69
|
+
-->
|
|
70
|
+
|
|
71
|
+
## Proposed UI/UX
|
|
72
|
+
<!--
|
|
73
|
+
Please provide your ideas for the API, CLI options,
|
|
74
|
+
configuration key names etc. that will be introduced for this feature.
|
|
75
|
+
-->
|
|
76
|
+
|
|
77
|
+
## Diagrams
|
|
78
|
+
<!--
|
|
79
|
+
Please include any diagrams that might be relevant
|
|
80
|
+
to the implementation of this feature such as:
|
|
81
|
+
* Class Diagrams
|
|
82
|
+
* Sequence Diagrams
|
|
83
|
+
* Activity Diagrams
|
|
84
|
+
You can drag and drop images into the text box to attach them to this issue.
|
|
85
|
+
-->
|
|
86
|
+
N/A
|
|
87
|
+
|
|
88
|
+
## Alternatives
|
|
89
|
+
<!--
|
|
90
|
+
If you have considered any alternative implementations
|
|
91
|
+
describe them in detail below.
|
|
92
|
+
-->
|
|
93
|
+
None
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: Major Version Release Checklist
|
|
3
|
+
about: About to release a new major version? (Maintainers Only!)
|
|
4
|
+
title: ''
|
|
5
|
+
labels: ''
|
|
6
|
+
assignees: ''
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
Version: <!-- Insert Version Here -->
|
|
11
|
+
Release PR: <!-- Insert Release PR Here -->
|
|
12
|
+
|
|
13
|
+
# Description
|
|
14
|
+
|
|
15
|
+
<!-- Briefly describe the contents of the version -->
|
|
16
|
+
|
|
17
|
+
# Checklist
|
|
18
|
+
|
|
19
|
+
- [ ] Release PR drafted
|
|
20
|
+
- [ ] Milestone is 100% done
|
|
21
|
+
- [ ] Merge Freeze
|
|
22
|
+
- [ ] Release PR reviewed
|
|
23
|
+
- [ ] The main branch build passes
|
|
24
|
+
|
|
25
|
+
[](https://github.com/celery/celery/actions/workflows/python-package.yml)
|
|
26
|
+
- [ ] Release Notes
|
|
27
|
+
- [ ] What's New
|
|
28
|
+
|
|
29
|
+
# Process
|
|
30
|
+
|
|
31
|
+
# Alphas
|
|
32
|
+
|
|
33
|
+
<!-- Add more as needed -->
|
|
34
|
+
- [ ] Alpha 1
|
|
35
|
+
|
|
36
|
+
## Betas
|
|
37
|
+
|
|
38
|
+
<!-- Add more as needed -->
|
|
39
|
+
- [ ] Beta 1
|
|
40
|
+
|
|
41
|
+
## Release Candidates
|
|
42
|
+
|
|
43
|
+
<!-- Add more as needed -->
|
|
44
|
+
- [ ] RC 1
|
|
45
|
+
|
|
46
|
+
# Release Blockers
|
|
47
|
+
|
|
48
|
+
# Potential Release Blockers
|