File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
deploy/sdk/src/dynamo/sdk/cli Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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 )
You can’t perform that action at this time.
0 commit comments