Skip to content

Commit

Permalink
Server log version in logs
Browse files Browse the repository at this point in the history
  • Loading branch information
zwimer committed Oct 2, 2024
1 parent a8e24eb commit 0299124
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions rpipe/server/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ def serve(conf: ServerConfig, log_conf: LogConfig) -> None:
app.config["MAX_CONTENT_LENGTH"] = MAX_SIZE_HARD
app.url_map.strict_slashes = False
admin.init(log_file, conf.key_files)
log.info("Starting server version: %s", __version__)
server.start(conf.debug, conf.state_file)
log.info("Serving on %s:%s", conf.host, conf.port)
if conf.debug:
Expand Down
2 changes: 1 addition & 1 deletion rpipe/shared/version_.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from __future__ import annotations


__version__: str = "8.4.0" # Must be "<major>.<minor>.<patch>", all numbers
__version__: str = "8.4.1" # Must be "<major>.<minor>.<patch>", all numbers


class Version:
Expand Down

0 comments on commit 0299124

Please sign in to comment.