getTenantDBPromise(dbStore)
.then(actions => {
Promise.all(actions).then(() => {
oldTenantsConf = newTenantsConf;
logger.info("ALL Tenant DB initialized, Returning DB Store");
resolve(dbStore);
});
});
在这种情况下,即使某些行为未能解决,仍然是promise.all应该解决所有其他承诺
答案 0 :(得分:0)
它已经证明,如果1 Promise在Promise.all中失败,那么所有也都会失败。
答案 1 :(得分:0)
我想如果一个人失败了,还有其他人应该跑。