Update manage.py

This commit is contained in:
qiaofeng1227 2023-05-05 11:25:14 +08:00 committed by GitHub
parent 2a1d017f0c
commit 7fb5ca6694
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -27,10 +27,25 @@ redis_conn = Redis(host='websoft9-redis', port=6379)
# 使用指定的 Redis 连接创建 RQ 队列
q = Queue(connection=redis_conn,default_timeout=3600)
# APP列表是否有正在安装的应用
def check_list_status(applist):
installing = False
for app in applist:
status = app['status']
if status == "created":
installing = True
break
return installing
# 获取所有app的信息
def get_my_app(app_id):
installed_list = get_apps_from_compose()
installing_list = get_apps_from_queue()
if check_list_status(installed_list):
time.sleep(3)
installed_list = get_apps_from_compose()
app_list = installing_list + installed_list
find = False
ret = {}