[Update] 修改database 表现

This commit is contained in:
ibuler
2017-12-31 12:20:08 +08:00
parent 13b610c140
commit 0b299344a7
10 changed files with 60 additions and 43 deletions

View File

@@ -61,7 +61,7 @@ def start_gunicorn():
cmd += log
if DEBUG:
cmd += " --reload"
p = subprocess.call(cmd, shell=True, stdout=sys.stdout, stderr=sys.stderr)
p = subprocess.Popen(cmd, shell=True, stdout=sys.stdout, stderr=sys.stderr)
return p