TimeRainStarSky / Yunzai

Yunzai 应用端,支持多账号,支持协议端:go-cqhttp、ComWeChat、GSUIDCore、ICQQ、QQBot、QQ频道、微信、KOOK、Telegram、Discord
GNU General Public License v3.0
333 stars 29 forks source link

当stdin关闭时避免程序退出 #103

Closed stkevintan closed 3 months ago

stkevintan commented 3 months ago

在docker环境下,退出it模式,stdin会自动触发close事件,此时不应该整个程序异常退出

TimeRainStarSky commented 3 months ago

stdin 关闭是应该程序退出,docker 可以设置 -it 保持打开,docker-compose

stdin_open: true
tty: true
TimeRainStarSky commented 3 months ago

如果确实需要关闭标准输入,应该整个标准输入都不被加载

TimeRainStarSky commented 3 months ago

已修复 725dffe