eggjs / egg

🥚 Born to build better enterprise frameworks and apps with Node.js & Koa
https://eggjs.org
MIT License
18.9k stars 1.82k forks source link

为什么在服务启动命令中添加参数在服务生命周期中获取不到? #5346

Closed zhangvj closed 4 months ago

zhangvj commented 4 months ago

在此输入你需要反馈的 Bug 具体信息(Bug in Detail):

  1. 我做了什么
  1. 我的预期
  1. 我实际得到的
image image image

可复现问题的仓库地址(Reproduction Repo)

bug.zip

Node 版本号:

v20.10.0

Eggjs 版本号:

3.27.1

相关插件名称与版本号(PlugIn and Name):

"devDependencies": { "egg-bin": "6", "egg-mock": "5", "eslint": "8", "eslint-config-egg": "13" },

操作平台与版本号(Platform and Version):

macOS 14.5 (23F79)

killagu commented 4 months ago

建议用环境变量,node 的启动参数没有从 master 进程传给 worker 进程。

zhangvj commented 4 months ago

建议用环境变量,node 的启动参数没有从 master 进程传给 worker 进程。

感谢回复,已经使用环境变量解决我的需求了