Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
zwimer committed Oct 20, 2024
1 parent 81c6276 commit 539e304
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rpipe/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__: str = "9.2.2" # Must be "<major>.<minor>.<patch>", all numbers
__version__: str = "9.2.3" # Must be "<major>.<minor>.<patch>", all numbers
2 changes: 1 addition & 1 deletion rpipe/server/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,14 @@ def __init__(self) -> None:
self.config["MAX_CONTENT_LENGTH"] = MAX_SIZE_HARD
self.url_map.strict_slashes = False

# pylint: disable=attribute-defined-outside-init
def start(self, conf: ServerConfig, log_file: Path, favicon: Path | None):
lg = getLogger(_LOG)
if favicon is not None and not favicon.is_file():
lg.error("Favicon file not found: %s", favicon)
favicon = None
admin = Admin(log_file, conf.key_files)
lg.info("Starting server version: %s", __version__)
# pylint: disable=attribute-defined-outside-init
self._objs = self.Objs(admin, Server(conf.debug, conf.state_file), favicon)
lg.info("Serving on %s:%s", conf.host, conf.port)
if conf.debug:
Expand Down

0 comments on commit 539e304

Please sign in to comment.