Skip to content

Commit

Permalink
fix: num rep
Browse files Browse the repository at this point in the history
  • Loading branch information
grutt committed Oct 29, 2024
1 parent a904a53 commit 15991b8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hatchet_sdk/compute/managed_compute.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def get_compute_configs(
if key not in map:
map[key] = ManagedWorkerCreateRequestRuntimeConfig(
actions=[],
num_replicas=1,
num_replicas=compute.num_replicas,
cpu_kind=compute.cpu_kind,
cpus=compute.cpus,
memory_mb=compute.memory_mb,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "hatchet-sdk"
version = "0.40.0a8"
version = "0.40.0a9"
description = ""
authors = ["Alexander Belanger <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit 15991b8

Please sign in to comment.