Files
SMSBoom/celery-client.py
AdminWhaleFall 82c7d38b59 feat: celery 异步框架测试运行。
celery 不支持在 windows 上调用 async 函数。所有要部署在 linux 上,部署待测试。
2022-05-14 22:57:28 +08:00

8 lines
137 B
Python

from celery_server.tasks import asyncRun
# r = test.delay(1,2)
# r2 = test.delay(1,2)
r = asyncRun.delay("13809213237")
print(r.get())