mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-07 08:27:12 +00:00
Fix remote parallel worktree path to mirror host structure
Replace hardcoded /home/daytona/workspace/.arc-parallel path with
{working_directory}/.arc/logs/{run_id}/parallel/{node_id}/{branch_key},
matching the host worktree layout and scoping worktrees per-run.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
ae72cd059d
commit
f6bc346663
1 changed files with 5 additions and 2 deletions
|
|
@ -312,8 +312,11 @@ impl Handler for ParallelHandler {
|
|||
}
|
||||
GitCheckpointMode::Remote(_) => {
|
||||
let wt_path_str = format!(
|
||||
"/home/daytona/workspace/.arc-parallel/{}/{}",
|
||||
node.id, branch_key
|
||||
"{}/.arc/logs/{}/parallel/{}/{}",
|
||||
services.execution_env.working_directory(),
|
||||
gs.run_id,
|
||||
node.id,
|
||||
branch_key
|
||||
);
|
||||
let ok = crate::engine::git_create_branch_at_remote(
|
||||
&*services.execution_env,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue