Update manage.py
This commit is contained in:
parent
3cbe9b0df4
commit
78fd8845fb
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ q = Queue(connection=redis_conn,default_timeout=3600)
|
||||||
def get_my_app(app_id):
|
def get_my_app(app_id):
|
||||||
installed_list = get_apps_from_compose()
|
installed_list = get_apps_from_compose()
|
||||||
installing_list = get_apps_from_queue()
|
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
|
find = False
|
||||||
ret = {}
|
ret = {}
|
||||||
if app_id != None:
|
if app_id != None:
|
||||||
|
|
Loading…
Add table
Reference in a new issue