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

pull/11/head v1.0.0
张玉坡 2018-09-14 15:46:29 +08:00
parent 720ef592ad
commit a614e377ed
4 changed files with 6 additions and 8 deletions

View File

@ -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)
```

View File

@ -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})

View File

@ -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()

View File

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