Browse Source

Update manage.py

qiaofeng1227 2 years ago
parent
commit
78fd8845fb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      appmanage/api/service/manage.py

+ 1 - 1
appmanage/api/service/manage.py

@@ -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: