fix: add session_id to copyVM payload (Copy flow was missing it)
This commit is contained in:
parent
bc20691390
commit
fc380f7d08
1 changed files with 1 additions and 0 deletions
|
|
@ -419,6 +419,7 @@ async function copyVM(jobId, vmid, sourceFilename) {
|
|||
if (diskGb) payload.append('target_disk_size_gb', diskGb);
|
||||
payload.append('auto_detect_boot', 'true');
|
||||
payload.append('boot_type', 'uefi');
|
||||
payload.append('session_id', window.VM_BENCH_SID || '');
|
||||
try {
|
||||
const resp = await fetch('/session/confirm', { method: 'POST', body: payload });
|
||||
const html = await resp.text();
|
||||
|
|
|
|||
Loading…
Reference in a new issue