summaryrefslogtreecommitdiff
path: root/service/pixelated/user_agent.py
diff options
context:
space:
mode:
authorBruno Wagner Goncalves <bwagner@thoughtworks.com>2014-08-29 14:37:04 -0300
committerBruno Wagner Goncalves <bwagner@thoughtworks.com>2014-08-29 14:37:04 -0300
commit9700427e9287eba766cbdae0fdc9afba2492b9ac (patch)
treed1504e5f3aaf33ce138fd2e1b7bd9648aac7b5c9 /service/pixelated/user_agent.py
parentcb393713eaf6541757dd21ff25964ce4236d861c (diff)
Removed flask reloader and changed the twisted port to be fixed again, now running always on 4650
Diffstat (limited to 'service/pixelated/user_agent.py')
-rw-r--r--service/pixelated/user_agent.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/service/pixelated/user_agent.py b/service/pixelated/user_agent.py
index ce096a6f..cee360cb 100644
--- a/service/pixelated/user_agent.py
+++ b/service/pixelated/user_agent.py
@@ -145,7 +145,8 @@ def setup():
mail_service = MailService(leap_session)
global mail_service
mail_service.start()
- app.run(host=app.config['HOST'], debug=debug_enabled, port=app.config['PORT'])
+ app.run(host=app.config['HOST'], debug=debug_enabled,
+ port=app.config['PORT'], use_reloader=False)
if __name__ == '__main__':