Sentry 忽略 --config 路径,但仅针对 "start" 命令

Sentry ignores --config path, but only for "start" command

我已经将 Sentry 安装到位于 /www/sentry/ 的 virtualenv 中,并且我有一个配置文件 /www/sentry/sentry.conf.py。我能够 运行 成功执行以下命令:

我什至可以 运行 sentry --config=/www/sentry/sentry.conf.py shell 然后在 Django shell 中检查从 django.conf 导入的 settings 模块是否具有自定义设置我在 sentry.conf.py 文件中添加了

但是,当我尝试启动包含的 Gunicorn 服务器时,我得到以下信息:

$ sentry --config=/www/sentry/sentry.conf.py start
Performing upgrade before service startup...
Loading help page organizations.md
Loading help page sampling.md
Loading help page tagging.md
Loading help page quotas.md
Loading help page teams_and_projects.md
Running service: 'http'
[2015-02-20 19:47:01 +0000] [19199] [INFO] Starting gunicorn 19.2.1
[2015-02-20 19:47:01 +0000] [19199] [INFO] Listening at: http://0.0.0.0:9000 (19199)
[2015-02-20 19:47:01 +0000] [19199] [INFO] Using worker: sync
[2015-02-20 19:47:01 +0000] [19219] [INFO] Booting worker with pid: 19219
[2015-02-20 19:47:01 +0000] [19219] [ERROR] Exception in worker process:
Traceback (most recent call last):
  File "/www/sentry/lib/python2.7/site-packages/gunicorn/arbiter.py", line 503, in spawn_worker
    worker.init_process()
  File "/www/sentry/lib/python2.7/site-packages/gunicorn/workers/base.py", line 116, in init_process
    self.wsgi = self.app.wsgi()
  File "/www/sentry/lib/python2.7/site-packages/gunicorn/app/base.py", line 67, in wsgi
    self.callable = self.load()
  File "/www/sentry/lib/python2.7/site-packages/sentry/services/http.py", line 34, in load
    import sentry.wsgi
  File "/www/sentry/lib/python2.7/site-packages/sentry/wsgi.py", line 20, in <module>
    configure()
  File "/www/sentry/lib/python2.7/site-packages/sentry/utils/runner.py", line 399, in configure
    initializer=initialize_app,
  File "/www/sentry/lib/python2.7/site-packages/logan/runner.py", line 89, in configure_app
    raise ValueError("Configuration file does not exist at %r" % (config_path,))
ValueError: Configuration file does not exist at '/www/.sentry/sentry.conf.py'
...etc...

我尝试创建一个 /www/.sentry/ 目录,然后将我的配置文件复制到其中,然后服务器加载没有问题:

$ mkdir /www/.sentry/
$ cp /www/sentry/sentry.conf.py /www/.sentry/sentry.conf.py
$ sentry --config=/www/sentry/sentry.conf.py start
Performing upgrade before service startup...
Loading help page organizations.md
Loading help page sampling.md
Loading help page tagging.md
Loading help page quotas.md
Loading help page teams_and_projects.md
Running service: 'http'
[2015-02-20 19:50:12 +0000] [19653] [INFO] Starting gunicorn 19.2.1
[2015-02-20 19:50:12 +0000] [19653] [INFO] Listening at: http://0.0.0.0:9000 (19653)
[2015-02-20 19:50:12 +0000] [19653] [INFO] Using worker: sync
[2015-02-20 19:50:12 +0000] [19673] [INFO] Booting worker with pid: 19673
[2015-02-20 19:50:12 +0000] [19674] [INFO] Booting worker with pid: 19674
[2015-02-20 19:50:12 +0000] [19675] [INFO] Booting worker with pid: 19675

但这看起来很愚蠢而且没有必要。谁能指出我正确的方向?

我遇到了同样的问题,我发现了这个错误报告:

https://github.com/getsentry/sentry/issues/1438

此提交为我修复了它:https://github.com/getsentry/sentry/commit/7629de1102973e4a3930487a3bf126a2f13c6850