Allow cached persistor to get size of a blob

GitOrigin-RevId: 7e2c14381cf717c21325917ef4f78acb340a50d9
This commit is contained in:
Andrew Rumble
2025-03-17 15:57:26 +00:00
committed by Copybot
parent 0895b5c6ee
commit d2d556ddf6

View File

@@ -414,6 +414,16 @@ class CachedPerProjectEncryptedS3Persistor {
return await this.sendStream(bucketName, path, fs.createReadStream(fsPath))
}
/**
*
* @param {string} bucketName
* @param {string} path
* @return {Promise<number>}
*/
async getObjectSize(bucketName, path) {
return await this.#parent.getObjectSize(bucketName, path)
}
/**
* @param {string} bucketName
* @param {string} path