Celery provides a more robust set of queueing options for both tasks and worker processes. Updates include: - infrastructure necessary to run Celery, including celery entrypoint - backgrounded functions are now imported directly from atst.jobs - update tests as-needed - update kubernetes worker pod command
8 lines
146 B
Python
8 lines
146 B
Python
#!/usr/bin/env python
|
|
|
|
from atst.app import celery, make_app, make_config
|
|
|
|
config = make_config()
|
|
app = make_app(config)
|
|
app.app_context().push()
|