[refactor] remove getValueSync

This commit is contained in:
PauI Ostrovckij
2025-07-09 10:03:48 +03:00
parent 499fbf7106
commit 83432108d2

View File

@ -85,7 +85,9 @@ function requireConfigWithRuntime(opt_additionalConfig) {
config = reloadNpmModule('config');
}
} catch (err) {
console.error('Failed to load runtime config: %s', err.stack);
if (err.code !== 'ENOENT') {
console.error('Failed to load runtime config: %s', err.stack);
}
}
return config;
}