Browse Source

U - 通用 - 修复发布过程中报错问题。

张玉坡 6 years ago
parent
commit
a614e377ed
4 changed files with 6 additions and 8 deletions
  1. 1 1
      README.md
  2. 0 1
      spug_api/apps/assets/host.py
  3. 3 4
      spug_api/libs/tools.py
  4. 2 2
      spug_web/webpack.config.js

+ 1 - 1
README.md

@@ -83,7 +83,7 @@ $ -e MYSQL_DATABASE="spug"                    //指定数据库名称
    $ npm run dev
 
    4. Visit 访问:
-   $ http://$HOST:8010 (http://你的主机IP:8080 来访问 Spug)
+   $ http://$HOST:8080 (http://你的主机IP:8080 来访问 Spug)
 
 ```
 

+ 0 - 1
spug_api/apps/assets/host.py

@@ -21,7 +21,6 @@ def get():
                              Argument('pagesize', type=int, default=10, required=False),
                              Argument('host_query', type=dict, required=False), ).parse(request.args)
     if error is None:
-        print('host_ng', form)
         host_data = Host.query
         if form.page == -1:
             return json_response({'data': [x.to_json() for x in host_data.all()], 'total': -1})

+ 3 - 4
spug_api/libs/tools.py

@@ -217,10 +217,9 @@ class CommonQueue(object):
             if q:
                 q.destroy()
             return
-        for t, q in self._queues.items():
-            if q.finished:
-                q.destroy()
-                self._queues.pop(t)
+        for t, q in [(t, q) for t, q in self._queues.items() if q.finished]:
+            q.destroy()
+            self._queues.pop(t)
 
 
 QueuePool = CommonQueue()

+ 2 - 2
spug_web/webpack.config.js

@@ -78,8 +78,8 @@ module.exports = (options = {}) => ({
     }
   },
   devServer: {
-    host: '127.0.0.1',
-    port: 8010,
+    host: '0.0.0.0',
+    port: 8080,
     proxy: {
       '/api/': {
         target: config.apiServer,