Removing timeout for export apps - #8589.
This commit is contained in:
parent
41a65bbe47
commit
2f6330db4f
|
@ -5,6 +5,8 @@ import { isQsTrue } from "../../utilities"
|
|||
|
||||
export async function exportAppDump(ctx: any) {
|
||||
let { appId, excludeRows } = ctx.query
|
||||
// remove the 120 second limit for the request
|
||||
ctx.req.setTimeout(0)
|
||||
const appName = decodeURI(ctx.query.appname)
|
||||
excludeRows = isQsTrue(excludeRows)
|
||||
const backupIdentifier = `${appName}-export-${new Date().getTime()}.tar.gz`
|
||||
|
|
Loading…
Reference in New Issue