Add allow_unsafe_options for Qemu settings

This commit is contained in:
grossmj
2024-07-07 19:08:12 +02:00
parent 6ed18c561f
commit 6b14abc06f
2 changed files with 3 additions and 0 deletions

View File

@ -320,6 +320,7 @@ async def export_project(
include_snapshots: bool = False,
include_images: bool = False,
reset_mac_addresses: bool = False,
keep_compute_ids: bool = False,
compression: schemas.ProjectCompression = "zstd",
compression_level: int = None,
) -> StreamingResponse:
@ -366,6 +367,7 @@ async def export_project(
tmpdir,
include_snapshots=include_snapshots,
include_images=include_images,
keep_compute_ids=keep_compute_ids,
reset_mac_addresses=reset_mac_addresses,
)
async for chunk in zstream: