We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 824f112 commit ed67255Copy full SHA for ed67255
src/pytest_celery/api/base.py
@@ -262,7 +262,7 @@ def ready(self) -> bool:
262
263
def config(self, *args: tuple, **kwargs: dict) -> dict:
264
"""Compile the configurations required for Celery from this cluster."""
265
- config = [node.container.celeryconfig for node in self]
+ config = [node.config() for node in self]
266
return {
267
"urls": [c["url"] for c in config],
268
"host_urls": [c["host_url"] for c in config],
0 commit comments