pip 版本的 Devstack 安装问题

问题描述

每次我尝试安装 devstack 时,我都会遇到同样的错误。任何人都可以为这个问题提出一些可能的解决方法吗?

async function fetchGroupsFromDatabase(id) {
    const doc = await db.collection("users").doc(id).get() // Fetch user details with given id 
    const myGroups = await Promise.all(
        doc.data().groupIDs.map(groupID => // Fetch all group IDs of the user
            db.collection("groups").doc(groupID).get() // Fetch all the groups 
                .then(doc => ({ id: doc.id,data: doc.data() }))
        )
    );
    const action = {
        type: FETCH_GROUPS_FROM_DATABASE,payload: myGroups
    };
    dispatch(action);
}

世界转储...详见/opt/stack/logs/worlddump-2021-01-17-111235.txt +./stack.sh:exit_trap:526 退出 1

Devstack Install Error

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)