My Code: ``` const admin = await import("firebase-admin"); const bucket = admin.storage().bucket(); const file = bucket.file(path); await file.save(content, {'gzip': gzip, 'contentType':'application/json', 'metadata': { 'Cache-Control': 'no-transform'}}) ``` Expected result: Object Metadata 'Cache-Control' will be set to 'no-transform' Actual result: Object Metadata 'Cache-Control' is empty
My Code:
Expected result: Object Metadata 'Cache-Control' will be set to 'no-transform'
Actual result: Object Metadata 'Cache-Control' is empty