Skip to content

Commit 9450d42

Browse files
committed
mask
1 parent 7d05b27 commit 9450d42

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

dist/restore-only/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8872,7 +8872,7 @@ class CacheServiceClient {
88728872
maskSigUrl(url, urlType) {
88738873
const sigIndex = url.indexOf('sig=');
88748874
if (sigIndex !== -1) {
8875-
const sigValue = url.substring(sigIndex + 4).split('&')[0];
8875+
const sigValue = url.substring(sigIndex + 4);
88768876
(0, core_1.setSecret)(sigValue);
88778877
const maskedUrl = `${url.substring(0, sigIndex + 4)}***`;
88788878
(0, core_1.debug)(`Masked ${urlType}: ${maskedUrl}`);

dist/restore/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8872,7 +8872,7 @@ class CacheServiceClient {
88728872
maskSigUrl(url, urlType) {
88738873
const sigIndex = url.indexOf('sig=');
88748874
if (sigIndex !== -1) {
8875-
const sigValue = url.substring(sigIndex + 4).split('&')[0];
8875+
const sigValue = url.substring(sigIndex + 4);
88768876
(0, core_1.setSecret)(sigValue);
88778877
const maskedUrl = `${url.substring(0, sigIndex + 4)}***`;
88788878
(0, core_1.debug)(`Masked ${urlType}: ${maskedUrl}`);

dist/save-only/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8872,7 +8872,7 @@ class CacheServiceClient {
88728872
maskSigUrl(url, urlType) {
88738873
const sigIndex = url.indexOf('sig=');
88748874
if (sigIndex !== -1) {
8875-
const sigValue = url.substring(sigIndex + 4).split('&')[0];
8875+
const sigValue = url.substring(sigIndex + 4);
88768876
(0, core_1.setSecret)(sigValue);
88778877
const maskedUrl = `${url.substring(0, sigIndex + 4)}***`;
88788878
(0, core_1.debug)(`Masked ${urlType}: ${maskedUrl}`);

dist/save/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8872,7 +8872,7 @@ class CacheServiceClient {
88728872
maskSigUrl(url, urlType) {
88738873
const sigIndex = url.indexOf('sig=');
88748874
if (sigIndex !== -1) {
8875-
const sigValue = url.substring(sigIndex + 4).split('&')[0];
8875+
const sigValue = url.substring(sigIndex + 4);
88768876
(0, core_1.setSecret)(sigValue);
88778877
const maskedUrl = `${url.substring(0, sigIndex + 4)}***`;
88788878
(0, core_1.debug)(`Masked ${urlType}: ${maskedUrl}`);

0 commit comments

Comments
 (0)