Update manage.py

This commit is contained in:
qiaofeng1227 2023-05-05 10:42:20 +08:00 committed by GitHub
parent f97b3db074
commit d44a06c030
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 = installed_list + installing_list
app_list = list(set(installing_list + installed_list), key=lambda x: x["app_id"])
find = False
ret = {}
if app_id != None: