Skip to content

Commit

Permalink
Bump verison to v2.1.0-rc16
Browse files Browse the repository at this point in the history
 * Ensure workers is always int
  • Loading branch information
polyaxon-ci committed Jan 26, 2024
1 parent 12bca9c commit caf8baa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion haupt/haupt/cli/runners/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def start_app(
port=port,
access_log=False,
log_level=log_level.lower(),
workers=workers,
workers=int(workers),
uds=uds,
timeout_keep_alive=120,
)
2 changes: 1 addition & 1 deletion haupt/haupt/pkg.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
NAME = "haupt"
VERSION = "2.1.0-rc12"
VERSION = "2.1.0-rc16"
DESC = (
"Lineage metadata API, artifacts streams, sandbox, ML-API, and spaces for Polyaxon."
)
Expand Down

0 comments on commit caf8baa

Please sign in to comment.