Skip to content

Commit

Permalink
hepp
Browse files Browse the repository at this point in the history
  • Loading branch information
soulgalore committed Dec 27, 2024
1 parent 3e5aba1 commit 8c03dd9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/plugins/gcs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,12 @@ async function uploadFile(
validation: 'crc32c',
gzip: !!gcsOptions.gzip,
metadata: {
// eslint-disable-next-line unicorn/numeric-separators-style
cacheControl: 'public, max-age=' + (noCacheTime ? 0 : 31536000)
// eslint-disable-next-line unicorn/numeric-separators-style
cacheControl: 'public, max-age=' + (noCacheTime ? 0 : 31536000)
}
};

log.info("Parameters");
log.info('Parameters');
log.info(parameters);
return bucket.upload(file, parameters);
}
Expand Down

0 comments on commit 8c03dd9

Please sign in to comment.