|
We are running a Django app with built in connection pooling: DATABASES["default"]["OPTIONS"] = {
"pool": {
"min_size": 1,
"max_size": 20,
"timeout": 20,
}
}And we were running celery with the threads pool: This worked until we upgraded to Celery 5.6 but then we started getting: I believe this was due to this pr: #9953 If we switch to This looks like a regression to me and I think the pool should only be closed on prefork pool types. Thoughts? |
Answered by
anze3db
Dec 15, 2025
Replies: 3 comments 8 replies
|
I left a comment on the related pr |
0 replies
|
I will look at it. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Confirming that it works as expected 🎉