Browse Source

[Debug] debug print error

pull/828/merge
ibuler 7 years ago
parent
commit
7558c2b3e4
  1. 3
      run_server.py

3
run_server.py

@ -61,7 +61,7 @@ def start_gunicorn():
cmd += log cmd += log
if DEBUG: if DEBUG:
cmd += " --reload" cmd += " --reload"
p = subprocess.Popen(cmd, shell=True, stdout=sys.stdout, stderr=sys.stderr) p = subprocess.call(cmd, shell=True, stdout=sys.stdout, stderr=sys.stderr)
return p return p
@ -146,7 +146,6 @@ if __name__ == '__main__':
choices=("all", "gunicorn", "celery", "beat"), choices=("all", "gunicorn", "celery", "beat"),
help="The service to start", help="The service to start",
) )
print("开始执行")
args = parser.parse_args() args = parser.parse_args()
try: try:
start_service(args.services) start_service(args.services)

Loading…
Cancel
Save