From 6179ac7f65d3524a28d7a5c422982b6c60efa07e Mon Sep 17 00:00:00 2001 From: Matt Johnson Date: Wed, 18 Sep 2024 10:45:40 -0500 Subject: [PATCH] param updates --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index b1833b7..b3b3ccc 100644 --- a/index.js +++ b/index.js @@ -54,7 +54,7 @@ class RallyClient { const debugEnvs = process.env.DEBUG?.toLowerCase() === "true" || false; const debugConf = config?.debug === true || false; - const configtest = JSON.parse(JSON.stringify(config)); + let configtest = JSON.parse(JSON.stringify(config)); configtest.auth.key = maskValue(configtest.auth.key); configtest.auth.user = maskValue(configtest.auth.user); configtest.auth.pass = maskValue(configtest.auth.pass);