Skip to content

Commit 53d0827

Browse files
committed
fix
1 parent ea620d0 commit 53d0827

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

deploy/sdk/src/dynamo/sdk/cli/serving.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ def serve_dynamo_graph(
172172
namespace: str = ""
173173
env: dict[str, Any] = {}
174174
svc = find_and_load_service(dynamo_pipeline, working_dir)
175-
bento_path = pathlib.Path(working_dir or ".")
175+
dynamo_path = pathlib.Path(working_dir or ".")
176176

177177
watchers: list[Watcher] = []
178178
sockets: list[CircusSocket] = []
@@ -236,7 +236,7 @@ def serve_dynamo_graph(
236236
dep_svc,
237237
uds_path,
238238
allocator,
239-
str(bento_path.absolute()),
239+
str(dynamo_path.absolute()),
240240
env=env,
241241
target=target,
242242
)
@@ -283,7 +283,7 @@ def serve_dynamo_graph(
283283
name=f"{namespace}_{svc.name}",
284284
args=dynamo_args,
285285
numprocesses=num_workers,
286-
working_dir=str(bento_path.absolute()),
286+
working_dir=str(dynamo_path.absolute()),
287287
env=worker_env,
288288
)
289289
watchers.append(watcher)

0 commit comments

Comments
 (0)