This commit is contained in:
Caleb Gosiak 2021-09-30 17:28:58 -05:00
parent 9c23f97836
commit ef015fc7a1
4 changed files with 16 additions and 4 deletions

6
dist/save/index.js vendored
View file

@ -43366,7 +43366,11 @@ class CacheService {
.putObject({
Bucket: this._bucket,
Key: path.join(this.getCacheFolder(), key),
Body: data
Body: data,
Metadata: {
ContentType: "text/plain",
ContentEncoding: "gzip"
}
})
.promise();
});