File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -42,8 +42,8 @@ export const sensitiveConfigKeys: Set<keyof LocalConfig> = new Set(['apiToken'])
42
42
let _cachedConfig : LocalConfig | undefined
43
43
// When using --config or SOCKET_CLI_CONFIG_OVERRIDE, do not persist the config.
44
44
let _readOnlyConfig = false
45
- export function overrideCachedConfig ( config : unknown ) {
46
- _cachedConfig = config as LocalConfig
45
+ export function overrideCachedConfig ( config : object ) {
46
+ _cachedConfig = { ... config } as LocalConfig
47
47
_readOnlyConfig = true
48
48
// Normalize apiKey to apiToken.
49
49
if ( _cachedConfig [ 'apiKey' ] ) {
@@ -177,7 +177,7 @@ export function updateConfigValue<Key extends keyof LocalConfig>(
177
177
const localConfig = getConfigValues ( )
178
178
localConfig [ normalizeConfigKey ( key ) as Key ] = value
179
179
if ( _readOnlyConfig ) {
180
- logger . error (
180
+ logger . warn (
181
181
'Not persisting config change; current config overridden through env var or flag'
182
182
)
183
183
} else if ( ! _pendingSave ) {
You can’t perform that action at this time.
0 commit comments