backend-manager 3.2.161 → 3.2.162
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/cli/cli.js +28 -20
package/package.json
CHANGED
package/src/cli/cli.js
CHANGED
|
@@ -1247,26 +1247,34 @@ async function execute(command, cwd) {
|
|
|
1247
1247
|
async function cmd_configGet(self, filePath) {
|
|
1248
1248
|
return new Promise(function(resolve, reject) {
|
|
1249
1249
|
const finalPath = `${self.firebaseProjectPath}/${filePath || 'functions/.runtimeconfig.json'}`;
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1250
|
+
|
|
1251
|
+
const max = 10;
|
|
1252
|
+
let retries = 0;
|
|
1253
|
+
|
|
1254
|
+
function _attempt() {
|
|
1255
|
+
exec(`firebase functions:config:get > ${finalPath}`, function (error, stdout, stderr) {
|
|
1256
|
+
if (error) {
|
|
1257
|
+
console.error(chalk.red(`Failed to get config: ${error}`));
|
|
1258
|
+
|
|
1259
|
+
// If retries are exhausted, reject
|
|
1260
|
+
if (retries++ > max) {
|
|
1261
|
+
return reject(error);
|
|
1262
|
+
}
|
|
1263
|
+
|
|
1264
|
+
// Retry
|
|
1265
|
+
const delay = 2500 * retries
|
|
1266
|
+
console.error(chalk.yellow(`Retrying config:get ${retries}/${max} in ${delay}ms...`));
|
|
1267
|
+
setTimeout(_attempt, delay);
|
|
1268
|
+
} else {
|
|
1269
|
+
console.log(chalk.green(`Saving config to: ${finalPath}`));
|
|
1270
|
+
console.log(stdout);
|
|
1271
|
+
resolve(require(finalPath));
|
|
1272
|
+
}
|
|
1273
|
+
});
|
|
1274
|
+
}
|
|
1275
|
+
|
|
1276
|
+
// Start the attempts
|
|
1277
|
+
_attempt();
|
|
1270
1278
|
});
|
|
1271
1279
|
}
|
|
1272
1280
|
|