Permalink
Comparing changes
Open a pull request
- 8 commits
- 264 files changed
- 2 commit comments
- 2 contributors
Showing
with
1,011 additions
and 879 deletions.
- +1 −1 .bumpversion.cfg
- +1 −1 README.rst
- +2 −1 celery/__init__.py
- +2 −0 celery/__main__.py
- +2 −0 celery/_state.py
- +2 −4 celery/app/amqp.py
- +1 −0 celery/app/annotations.py
- +3 −1 celery/app/backends.py
- +17 −24 celery/app/base.py
- +1 −0 celery/app/builtins.py
- +3 −0 celery/app/control.py
- +2 −0 celery/app/defaults.py
- +2 −0 celery/app/events.py
- +3 −6 celery/app/log.py
- +3 −1 celery/app/registry.py
- +3 −0 celery/app/routes.py
- +3 −2 celery/app/task.py
- +23 −20 celery/app/trace.py
- +3 −6 celery/app/utils.py
- +6 −4 celery/apps/beat.py
- +2 −4 celery/apps/multi.py
- +2 −6 celery/apps/worker.py
- +2 −3 celery/backends/amqp.py
- +0 −1 celery/backends/async.py
- +12 −18 celery/backends/base.py
- +4 −0 celery/backends/cache.py
- +4 −0 celery/backends/cassandra.py
- +4 −1 celery/backends/consul.py
- +5 −0 celery/backends/couchbase.py
- +4 −0 celery/backends/couchdb.py
- +5 −1 celery/backends/database/models.py
- +2 −1 celery/backends/database/session.py
- +6 −2 celery/backends/dynamodb.py
- +6 −1 celery/backends/elasticsearch.py
- +5 −2 celery/backends/filesystem.py
- +11 −7 celery/backends/mongodb.py
- +1 −2 celery/backends/redis.py
- +5 −0 celery/backends/riak.py
- +1 −1 celery/backends/rpc.py
- +7 −11 celery/beat.py
- +3 −5 celery/bin/amqp.py
- +8 −14 celery/bin/base.py
- +3 −1 celery/bin/beat.py
- +2 −0 celery/bin/call.py
- +6 −10 celery/bin/celery.py
- +4 −2 celery/bin/celeryd_detach.py
- +3 −1 celery/bin/control.py
- +3 −1 celery/bin/events.py
- +3 −0 celery/bin/graph.py
- +1 −0 celery/bin/list.py
- +2 −0 celery/bin/logtool.py
- +1 −0 celery/bin/migrate.py
- +3 −0 celery/bin/multi.py
- +2 −1 celery/bin/purge.py
- +1 −0 celery/bin/result.py
- +3 −1 celery/bin/shell.py
- +2 −0 celery/bin/upgrade.py
- +2 −0 celery/bin/worker.py
- +11 −7 celery/canvas.py
- +3 −4 celery/concurrency/asynpool.py
- +1 −1 celery/concurrency/base.py
- +7 −8 celery/concurrency/eventlet.py
- +4 −1 celery/concurrency/gevent.py
- +5 −5 celery/concurrency/prefork.py
- +2 −0 celery/concurrency/solo.py
- +1 −0 celery/contrib/abortable.py
- +1 −2 celery/contrib/migrate.py
- +4 −1 celery/contrib/pytest.py
- +3 −0 celery/contrib/rdb.py
- +3 −0 celery/contrib/sphinx.py
- +4 −2 celery/contrib/testing/app.py
- +0 −1 celery/contrib/testing/manager.py
- +2 −0 celery/contrib/testing/mocks.py
- +1 −0 celery/contrib/testing/tasks.py
- +3 −1 celery/contrib/testing/worker.py
- +2 −4 celery/events/cursesmon.py
- +0 −1 celery/events/dispatcher.py
- +2 −0 celery/events/dumper.py
- +2 −0 celery/events/event.py
- +0 −1 celery/events/receiver.py
- +3 −1 celery/events/snapshot.py
- +2 −1 celery/events/state.py
- +10 −4 celery/exceptions.py
- +3 −0 celery/five.py
- +3 −5 celery/fixups/django.py
- +1 −0 celery/loaders/app.py
- +2 −4 celery/loaders/base.py
- +3 −0 celery/loaders/default.py
- +2 −0 celery/local.py
- +5 −4 celery/platforms.py
- +3 −6 celery/result.py
- +10 −8 celery/schedules.py
- +4 −0 celery/security/certificate.py
- +2 −0 celery/security/key.py
- +3 −3 celery/security/serialization.py
- +3 −0 celery/security/utils.py
- +1 −0 celery/signals.py
- +5 −1 celery/task/base.py
- +2 −0 celery/utils/abstract.py
- +12 −7 celery/utils/collections.py
- +0 −1 celery/utils/debug.py
- +4 −1 celery/utils/deprecated.py
- +4 −1 celery/utils/dispatch/signal.py
- +1 −0 celery/utils/dispatch/weakref_backports.py
- +5 −4 celery/utils/encoding.py
- +2 −5 celery/utils/functional.py
- +4 −1 celery/utils/graph.py
- +3 −0 celery/utils/imports.py
- +2 −0 celery/utils/iso8601.py
- +3 −2 celery/utils/log.py
- +3 −0 celery/utils/nodenames.py
- +1 −0 celery/utils/objects.py
- +0 −2 celery/utils/saferepr.py
- +4 −5 celery/utils/serialization.py
- +2 −0 celery/utils/sysinfo.py
- +3 −1 celery/utils/term.py
- +3 −1 celery/utils/text.py
- +1 −2 celery/utils/threads.py
- +3 −4 celery/utils/time.py
- +5 −4 celery/utils/timer2.py
- +1 −2 celery/worker/autoscale.py
- +4 −3 celery/worker/components.py
- +2 −0 celery/worker/consumer/agent.py
- +2 −0 celery/worker/consumer/connection.py
- +5 −9 celery/worker/consumer/consumer.py
- +2 −0 celery/worker/consumer/control.py
- +3 −0 celery/worker/consumer/events.py
- +1 −1 celery/worker/consumer/gossip.py
- +2 −0 celery/worker/consumer/heart.py
- +2 −0 celery/worker/consumer/mingle.py
- +3 −0 celery/worker/consumer/tasks.py
- +0 −1 celery/worker/control.py
- +3 −1 celery/worker/heartbeat.py
- +4 −1 celery/worker/loops.py
- +4 −0 celery/worker/pidbox.py
- +6 −7 celery/worker/request.py
- +1 −1 celery/worker/state.py
- +1 −1 celery/worker/strategy.py
- +12 −10 celery/worker/worker.py
- +1 −1 docs/includes/introduction.txt
- +1 −1 docs/userguide/configuration.rst
- +4 −4 docs/userguide/extending.rst
- +1 −1 requirements/default.txt
- +1 −1 requirements/test.txt
- +1 −1 setup.cfg
- +5 −3 t/benchmarks/bench_worker.py
- +2 −0 t/distro/test_CI_reqs.py
- +4 −1 t/integration/conftest.py
- +3 −1 t/integration/tasks.py
- +3 −0 t/integration/test_canvas.py
- +2 −0 t/integration/test_tasks.py
- +4 −1 t/unit/app/test_amqp.py
- +1 −0 t/unit/app/test_annotations.py
- +7 −9 t/unit/app/test_app.py
- +2 −0 t/unit/app/test_backends.py
- +7 −5 t/unit/app/test_beat.py
- +3 −1 t/unit/app/test_builtins.py
- +3 −1 t/unit/app/test_celery.py
- +2 −0 t/unit/app/test_control.py
- +6 −4 t/unit/app/test_defaults.py
- +2 −0 t/unit/app/test_exceptions.py
- +2 −3 t/unit/app/test_loaders.py
- +6 −14 t/unit/app/test_log.py
- +2 −0 t/unit/app/test_registry.py
- +0 −1 t/unit/app/test_routes.py
- +3 −5 t/unit/app/test_schedules.py
- +4 −1 t/unit/app/test_utils.py
- +7 −5 t/unit/apps/test_multi.py
- +3 −5 t/unit/backends/test_amqp.py
- +7 −13 t/unit/backends/test_base.py
- +7 −5 t/unit/backends/test_cache.py
- +5 −2 t/unit/backends/test_cassandra.py
- +2 −0 t/unit/backends/test_consul.py
- +3 −1 t/unit/backends/test_couchbase.py
- +7 −4 t/unit/backends/test_couchdb.py
- +3 −5 t/unit/backends/test_database.py
- +26 −25 t/unit/backends/test_dynamodb.py
- +2 −0 t/unit/backends/test_elasticsearch.py
- +2 −3 t/unit/backends/test_filesystem.py
- +3 −6 t/unit/backends/test_mongodb.py
- +10 −10 t/unit/backends/test_redis.py
- +2 −0 t/unit/backends/test_riak.py
- +3 −1 t/unit/backends/test_rpc.py
- +1 −0 t/unit/bin/celery.py
- +3 −7 t/unit/bin/test_amqp.py
- +4 −5 t/unit/bin/test_base.py
- +6 −4 t/unit/bin/test_beat.py
- +5 −2 t/unit/bin/test_call.py
- +11 −13 t/unit/bin/test_celery.py
- +3 −6 t/unit/bin/test_celeryd_detach.py
- +4 −5 t/unit/bin/test_celeryevdump.py
- +4 −2 t/unit/bin/test_control.py
- +5 −0 t/unit/bin/test_events.py
- +2 −0 t/unit/bin/test_list.py
- +3 −1 t/unit/bin/test_migrate.py
- +7 −2 t/unit/bin/test_multi.py
- +3 −1 t/unit/bin/test_purge.py
- +3 −1 t/unit/bin/test_result.py
- +7 −8 t/unit/bin/test_worker.py
- +5 −5 t/unit/compat_modules/test_compat.py
- +3 −1 t/unit/compat_modules/test_compat_utils.py
- +4 −1 t/unit/compat_modules/test_decorators.py
- +2 −0 t/unit/compat_modules/test_messaging.py
- +5 −2 t/unit/concurrency/test_concurrency.py
- +5 −6 t/unit/concurrency/test_eventlet.py
- +3 −5 t/unit/concurrency/test_gevent.py
- +4 −2 t/unit/concurrency/test_pool.py
- +1 −2 t/unit/concurrency/test_prefork.py
- +2 −0 t/unit/concurrency/test_solo.py
- +6 −9 t/unit/conftest.py
- +2 −1 t/unit/contrib/test_abortable.py
- +8 −22 t/unit/contrib/test_migrate.py
- +4 −5 t/unit/contrib/test_rdb.py
- +1 −0 t/unit/events/test_cursesmon.py
- +4 −1 t/unit/events/test_events.py
- +2 −0 t/unit/events/test_snapshot.py
- +5 −13 t/unit/events/test_state.py
- +22 −24 t/unit/fixups/test_django.py
- +1 −0 t/unit/security/case.py
- +3 −0 t/unit/security/test_certificate.py
- +3 −0 t/unit/security/test_key.py
- +1 −3 t/unit/security/test_security.py
- +2 −2 t/unit/security/test_serialization.py
- +7 −15 t/unit/tasks/test_canvas.py
- +6 −5 t/unit/tasks/test_chord.py
- +1 −0 t/unit/tasks/test_context.py
- +15 −24 t/unit/tasks/test_result.py
- +2 −0 t/unit/tasks/test_states.py
- +1 −2 t/unit/tasks/test_tasks.py
- +11 −19 t/unit/tasks/test_trace.py
- +5 −11 t/unit/utils/test_collections.py
- +2 −0 t/unit/utils/test_debug.py
- +2 −0 t/unit/utils/test_deprecated.py
- +2 −1 t/unit/utils/test_dispatcher.py
- +1 −0 t/unit/utils/test_encoding.py
- +9 −16 t/unit/utils/test_functional.py
- +2 −0 t/unit/utils/test_graph.py
- +4 −8 t/unit/utils/test_imports.py
- +6 −8 t/unit/utils/test_local.py
- +2 −0 t/unit/utils/test_nodenames.py
- +1 −0 t/unit/utils/test_objects.py
- +1 −0 t/unit/utils/test_pickle.py
- +11 −28 t/unit/utils/test_platforms.py
- +7 −5 t/unit/utils/test_saferepr.py
- +7 −7 t/unit/utils/test_serialization.py
- +3 −1 t/unit/utils/test_sysinfo.py
- +3 −1 t/unit/utils/test_term.py
- +4 −8 t/unit/utils/test_text.py
- +4 −7 t/unit/utils/test_threads.py
- +10 −17 t/unit/utils/test_time.py
- +4 −1 t/unit/utils/test_timer2.py
- +5 −3 t/unit/utils/test_utils.py
- +4 −2 t/unit/worker/test_autoscale.py
- +2 −0 t/unit/worker/test_bootsteps.py
- +2 −0 t/unit/worker/test_components.py
- +5 −6 t/unit/worker/test_consumer.py
- +5 −7 t/unit/worker/test_control.py
- +2 −0 t/unit/worker/test_heartbeat.py
- +4 −5 t/unit/worker/test_loops.py
- +11 −25 t/unit/worker/test_request.py
- +1 −0 t/unit/worker/test_revoke.py
- +5 −2 t/unit/worker/test_state.py
- +2 −3 t/unit/worker/test_strategy.py
- +13 −15 t/unit/worker/test_worker.py
Oops, something went wrong.
Showing you all comments on commits in this comparison.
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Show comment
Hide comment
|
@thedrow could you look intro this please? |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Show comment
Hide comment
thedrow
May 22, 2018
Contributor
Pretty sure I fixed that. See https://github.com/celery/celery/blob/4.1/celery/concurrency/asynpool.py#L38
|
Pretty sure I fixed that. See https://github.com/celery/celery/blob/4.1/celery/concurrency/asynpool.py#L38 |
@thedrow could you look intro this please?