Commit e32259c8 authored by Cédric Le Ninivin's avatar Cédric Le Ninivin

Slapproxy do not start in debug more anymore

parent a652a610
...@@ -119,7 +119,7 @@ def run(config): ...@@ -119,7 +119,7 @@ def run(config):
from views import app from views import app
app.config['computer_id'] = config.computer_id app.config['computer_id'] = config.computer_id
app.config['DATABASE_URI'] = config.database_uri app.config['DATABASE_URI'] = config.database_uri
app.run(host=config.host, port=int(config.port), debug=True) app.run(host=config.host, port=int(config.port))
def main(): def main():
"Run default configuration." "Run default configuration."
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment