瀏覽代碼

chore: ignore openai error record in sentry (#7770)

tags/0.7.3
takatost 1 年之前
父節點
當前提交
0e0a703496
No account linked to committer's email address
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. 2
    1
      api/extensions/ext_sentry.py

+ 2
- 1
api/extensions/ext_sentry.py 查看文件

@@ -1,3 +1,4 @@
import openai
import sentry_sdk
from sentry_sdk.integrations.celery import CeleryIntegration
from sentry_sdk.integrations.flask import FlaskIntegration
@@ -9,7 +10,7 @@ def init_app(app):
sentry_sdk.init(
dsn=app.config.get("SENTRY_DSN"),
integrations=[FlaskIntegration(), CeleryIntegration()],
ignore_errors=[HTTPException, ValueError],
ignore_errors=[HTTPException, ValueError, openai.APIStatusError],
traces_sample_rate=app.config.get("SENTRY_TRACES_SAMPLE_RATE", 1.0),
profiles_sample_rate=app.config.get("SENTRY_PROFILES_SAMPLE_RATE", 1.0),
environment=app.config.get("DEPLOY_ENV"),

Loading…
取消
儲存