Skip to content

Commit 0c35c20

Browse files
authored
Merge pull request #16630 from Budibase/app-export-memory-use
Bump export concurrency to 5 and make sure export modal shows loading state.
2 parents 28f071a + 916d3bb commit 0c35c20

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/backend-core/src/objectStore/objectStore.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,7 @@ export async function retrieveDirectory(bucketName: string, path: string) {
463463
)
464464
})
465465
},
466-
3 /* max concurrency */
466+
5 /* max concurrency */
467467
)
468468

469469
span.addTags({ numObjects })

packages/builder/src/components/start/ExportAppModal.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@
3434
? `Export published ${appOrWorkspace}`
3535
: `Export latest ${appOrWorkspace}`,
3636
confirmText: encrypt ? "Continue" : exportButtonText,
37-
onConfirm: () => {
37+
onConfirm: async () => {
3838
if (!encrypt) {
39-
exportApp()
39+
await exportApp()
4040
} else {
4141
currentStep = Step.SET_PASSWORD
4242
return keepOpen

0 commit comments

Comments
 (0)