gpt4 book ai didi

node.js - 如何在使用 webpack 热模块重新加载启动新实例之前等待应用程序关闭?

转载 作者:太空宇宙 更新时间:2023-11-03 21:51:28 30 4
gpt4 key购买 nike

我正在为我的 Nest.js 应用程序使用 webpack 热模块重载 (hmr)。重新加载可以工作,但在启动新实例之前不会等待旧实例完全关闭(数据库连接、电报机器人......)。这使得 typeorm 抛出以下错误:

AlreadyHasActiveConnectionError: Cannot create a new connection named "default", because connection with such name already exist and it now has an active connection session.

在我的 main.ts 中,我有一个关闭旧实例的处置处理程序:

if (module && module.hot) {
module.hot.accept();
module.hot.dispose(async () => {
console.log('disposing module');
await app.close();
console.log('has closed app');
});
}

当我运行 hmr 并对我的应用程序进行更改时,我可以看到它调用 dispose 处理程序并立即启动新应用程序。在启动新实例之前,如何让 webpack 等待由 dispose 处理程序返回的 promise 解决?

最佳答案

根据这个issue ,您可以在 typeorm 选项中将 keepConnectionAlive 设置为 true,以重用连接。

TypeOrmModule.forRoot({
// ...
keepConnectionAlive: true,
})

这确实解决了类型错误,但电报机器人的问题仍然存在:

Error: 409: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running

我认为我无法重用机器人实例,因此这只是部分解决方案。

关于node.js - 如何在使用 webpack 热模块重新加载启动新实例之前等待应用程序关闭?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54842295/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com