Update manage.py

This commit is contained in:
qiaofeng1227 2023-05-05 11:02:11 +08:00 committed by GitHub
parent 3cbe9b0df4
commit 78fd8845fb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -31,7 +31,7 @@ q = Queue(connection=redis_conn,default_timeout=3600)
def get_my_app(app_id):
installed_list = get_apps_from_compose()
installing_list = get_apps_from_queue()
app_list = sorted(list(set(installing_list + installed_list)), key=lambda x: x["app_id"])
app_list = installing_list + installed_list
find = False
ret = {}
if app_id != None: