fix: replay Windows réparé — machine_replay_target restauré

Le fix sécurité avait supprimé _machine_replay_target qui est nécessaire
pour router les actions vers la bonne session agent.
Session_id vide dans le frontend = auto-détection serveur.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Dom
2026-03-18 11:30:04 +01:00
parent d4871249ea
commit 81d2d016ff
2 changed files with 3 additions and 3 deletions

View File

@@ -39,7 +39,7 @@ export default function ExecutionControls({ execution, onStart, onStop }: Props)
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
workflow_id: workflowId,
session_id: `replay_${Date.now()}`,
session_id: '', // vide = auto-détection de la session agent active
actions: steps.map((step: any, i: number) => ({
action_id: step.id || `action_${i}`,
type: step.action_type,