2 Star 7 Fork 4

Charles Lai/devops-backend-lite

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
celery.sh 279 Bytes
一键复制 编辑 原始数据 按行查看 历史
Charles Lai 提交于 2023-12-13 11:10 . 首次提交代码
#!/bin/bash
export PYTHONOPTIMIZE=1
if [ $# -ne 0 ];then
queue=$1
elif [ ! -z $QUEUE ];then
queue=$QUEUE
else
queue='celery'
fi
echo "Current Queue: $queue"
celery -A celery_tasks worker --loglevel=info --without-gossip --without-mingle --without-heartbeat -E -Q $queue
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/qitan/devops-backend-lite.git
[email protected]:qitan/devops-backend-lite.git
qitan
devops-backend-lite
devops-backend-lite
main

搜索帮助