mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 21:43:21 +00:00
casper: Fix issues with server autoreloading on save.
This fixes an issue where if you saved a Python file (even just changing whitespace) while casper tests were running, the Tornado server being used would restart, triggering a confusing error like this: ReferenceError: Can't find variable: $ Traceback: undefined:2 :4 Suite explicitly interrupted without any message given.
This commit is contained in:
@@ -19,5 +19,6 @@ def create_tornado_application():
|
||||
return tornado.web.Application(([(url, AsyncDjangoHandler) for url in urls] +
|
||||
get_sockjs_router().urls),
|
||||
debug=settings.DEBUG,
|
||||
autoreload=settings.AUTORELOAD,
|
||||
# Disable Tornado's own request logging, since we have our own
|
||||
log_function=lambda x: None)
|
||||
|
||||
Reference in New Issue
Block a user