mirror of
https://github.com/zulip/zulip.git
synced 2026-07-03 21:10:12 +08:00
runtornado: Honor the --skip-checks flag.
This is particularly important because they can be quite heavy-weight.
This commit is contained in:
parent
043d3127eb
commit
d341e6ced1
@ -107,7 +107,8 @@ class Command(BaseCommand):
|
||||
|
||||
# We pass display_num_errors=False, since Django will
|
||||
# likely display similar output anyway.
|
||||
self.check(display_num_errors=False)
|
||||
if not options["skip_checks"]:
|
||||
self.check(display_num_errors=False)
|
||||
print(f"Tornado server (re)started on port {port}")
|
||||
|
||||
if settings.USING_RABBITMQ:
|
||||
|
||||
Loading…
Reference in New Issue
Block a user