diff --git a/dist/restore-only/index.js b/dist/restore-only/index.js index cca31f6..c4587a8 100644 --- a/dist/restore-only/index.js +++ b/dist/restore-only/index.js @@ -8872,7 +8872,7 @@ class CacheServiceClient { maskSigUrl(url, urlType) { const sigIndex = url.indexOf('sig='); if (sigIndex !== -1) { - const sigValue = url.substring(sigIndex + 4).split('&')[0]; + const sigValue = url.substring(sigIndex + 4); (0, core_1.setSecret)(sigValue); const maskedUrl = `${url.substring(0, sigIndex + 4)}***`; (0, core_1.debug)(`Masked ${urlType}: ${maskedUrl}`); diff --git a/dist/restore/index.js b/dist/restore/index.js index 9fa426e..7b9299b 100644 --- a/dist/restore/index.js +++ b/dist/restore/index.js @@ -8872,7 +8872,7 @@ class CacheServiceClient { maskSigUrl(url, urlType) { const sigIndex = url.indexOf('sig='); if (sigIndex !== -1) { - const sigValue = url.substring(sigIndex + 4).split('&')[0]; + const sigValue = url.substring(sigIndex + 4); (0, core_1.setSecret)(sigValue); const maskedUrl = `${url.substring(0, sigIndex + 4)}***`; (0, core_1.debug)(`Masked ${urlType}: ${maskedUrl}`); diff --git a/dist/save-only/index.js b/dist/save-only/index.js index 165347c..2d4668d 100644 --- a/dist/save-only/index.js +++ b/dist/save-only/index.js @@ -8872,7 +8872,7 @@ class CacheServiceClient { maskSigUrl(url, urlType) { const sigIndex = url.indexOf('sig='); if (sigIndex !== -1) { - const sigValue = url.substring(sigIndex + 4).split('&')[0]; + const sigValue = url.substring(sigIndex + 4); (0, core_1.setSecret)(sigValue); const maskedUrl = `${url.substring(0, sigIndex + 4)}***`; (0, core_1.debug)(`Masked ${urlType}: ${maskedUrl}`); diff --git a/dist/save/index.js b/dist/save/index.js index 91b13b8..87f699f 100644 --- a/dist/save/index.js +++ b/dist/save/index.js @@ -8872,7 +8872,7 @@ class CacheServiceClient { maskSigUrl(url, urlType) { const sigIndex = url.indexOf('sig='); if (sigIndex !== -1) { - const sigValue = url.substring(sigIndex + 4).split('&')[0]; + const sigValue = url.substring(sigIndex + 4); (0, core_1.setSecret)(sigValue); const maskedUrl = `${url.substring(0, sigIndex + 4)}***`; (0, core_1.debug)(`Masked ${urlType}: ${maskedUrl}`);