Skip to content

Commit

Permalink
Fix daphne support
Browse files Browse the repository at this point in the history
  • Loading branch information
yakky committed Nov 27, 2023
1 parent 8f76a9e commit d5d9c58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app_helper/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def _run_daphne(settings, bind, port, migrate_cmd, verbose):
from daphne.cli import CommandLineInterface

_setup_db(migrate_cmd)
daphne_args = ["-b", bind, "-p", port, "-v", verbose, settings.ASGI_APPLICATION]
daphne_args = ["-b", bind, "-p", port, "-v", verbose or "1", settings.ASGI_APPLICATION]
autoreload.run_with_reloader(CommandLineInterface().run, daphne_args)


Expand Down

0 comments on commit d5d9c58

Please sign in to comment.