streaming export with log
All checks were successful
Deploy Plattform-Core / test (push) Successful in 46s
Deploy Plattform-Core / deploy (push) Successful in 4s

This commit is contained in:
ValueOn AG 2026-05-27 23:04:58 +02:00
parent f24b67ed85
commit 3e2c07a776

View file

@ -522,7 +522,10 @@ def getMigrationExportStream(
return StreamingResponse( return StreamingResponse(
streamExportGenerator(dbList, instanceLabel), streamExportGenerator(dbList, instanceLabel),
media_type="application/json", media_type="application/json",
headers={"Content-Disposition": f'attachment; filename="{filename}"'}, headers={
"Content-Disposition": f'attachment; filename="{filename}"',
"X-Export-Databases": ",".join(dbList),
},
) )