Budibase/budibase · error

No manifest found in backup for workspace ${workspaceId}

Error message

No manifest found in backup for workspace ${workspaceId}

What it means

Error "No manifest found in backup for workspace ${workspaceId}" thrown in Budibase/budibase.

Source

Thrown at packages/server/src/utilities/fileSystem/clientLibrary.ts:261

      const { stream } = await objectStore.getReadStream(
        ObjectStoreBuckets.APPS,
        filePath
      )

      await objectStore.streamUpload({
        bucket: ObjectStoreBuckets.APPS,
        filename: restoreKey,
        stream,
      })
    })
  }

  if (!hasBackup) {
    throw new Error(`No backup found for workspace ${workspaceId}`)
  }

  if (!manifestContent) {
    throw new Error(`No manifest found in backup for workspace ${workspaceId}`)
  }

  return JSON.parse(manifestContent)
}

const forEachObject = (
  path: string,
  task: (fileKey: string) => Promise<void>
) =>
  utils.parallelForeach(
    objectStore.listAllObjects(ObjectStoreBuckets.APPS, path),
    async file => {
      if (!file.Key) {
        throw new Error("file.Key must be defined")
      }
      await task(file.Key)
    },
    5

View on GitHub (pinned to a81a902e9a)

When it happens

Trigger: Thrown at packages/server/src/utilities/fileSystem/clientLibrary.ts:261 when the library encounters an invalid state.

Common situations: See trigger scenarios.


AI-assisted analysis of Budibase/budibase@a81a902e9a (2026-08-29). Data as JSON: /api/errors/97e1f39e2922c81c. Report an issue: GitHub.