From 8c03dd95d95e8b3b79f4715e55f6352f6b6add10 Mon Sep 17 00:00:00 2001 From: soulgalore Date: Fri, 27 Dec 2024 17:28:47 +0100 Subject: [PATCH] hepp --- lib/plugins/gcs/index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/plugins/gcs/index.js b/lib/plugins/gcs/index.js index a52d0b3a31..d12539d6ee 100644 --- a/lib/plugins/gcs/index.js +++ b/lib/plugins/gcs/index.js @@ -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); }