Commit 564d96a4 authored by Mickaël Desfrênes's avatar Mickaël Desfrênes
Browse files

fix ignored port option

parent 5d6d3f27
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@ import re
import aiofiles
import argh

version = "0.0.45"
version = "0.0.46"

AUTH_DB_PATH = "{}/auth.db".format(CONFIG["CIRCE_WORKING_DIR"])

@@ -392,7 +392,7 @@ def serve(
    """
    _check_port(host, port)
    working_directory = os.getcwd()
    app_args = ["sanic", "circe.server", "-w", str(workers)]
    app_args = ["sanic", "circe.server", "-w", str(workers), "-p", str(port)]
    if debug:
        app_args.append("--dev")
    if access_log:
+1 −1
Original line number Diff line number Diff line
[tool.poetry]
name = "circe-CERTIC"
readme = "README.md"
version = "0.0.45"
version = "0.0.46"
description = "Circe Server"
authors = ["Mickaël Desfrênes <mickael.desfrenes@unicaen.fr>"]
license = "CeCILL-B"