mirror of
https://github.com/imgproxy/imgproxy.git
synced 2025-02-07 11:36:25 +02:00
Fix airbrake
This commit is contained in:
parent
69699a52f6
commit
9d061c6f3e
@ -299,7 +299,7 @@ type config struct {
|
||||
SentryDSN string
|
||||
SentryEnvironment string
|
||||
SentryRelease string
|
||||
AirbrakeProjecId int
|
||||
AirbrakeProjecID int
|
||||
AirbrakeProjecKey string
|
||||
AirbrakeEnv string
|
||||
|
||||
@ -481,7 +481,7 @@ func configure() error {
|
||||
strEnvConfig(&conf.SentryDSN, "IMGPROXY_SENTRY_DSN")
|
||||
strEnvConfig(&conf.SentryEnvironment, "IMGPROXY_SENTRY_ENVIRONMENT")
|
||||
strEnvConfig(&conf.SentryRelease, "IMGPROXY_SENTRY_RELEASE")
|
||||
intEnvConfig(&conf.AirbrakeProjecId, "IMGPROXY_AIRBRAKE_PROJECT_ID")
|
||||
intEnvConfig(&conf.AirbrakeProjecID, "IMGPROXY_AIRBRAKE_PROJECT_ID")
|
||||
strEnvConfig(&conf.AirbrakeProjecKey, "IMGPROXY_AIRBRAKE_PROJECT_KEY")
|
||||
strEnvConfig(&conf.AirbrakeEnv, "IMGPROXY_AIRBRAKE_ENVIRONMENT")
|
||||
boolEnvConfig(&conf.ReportDownloadingErrors, "IMGPROXY_REPORT_DOWNLOADING_ERRORS")
|
||||
|
@ -51,7 +51,7 @@ func initErrorsReporting() {
|
||||
|
||||
if len(conf.AirbrakeProjecKey) > 0 {
|
||||
airbrake = gobrake.NewNotifierWithOptions(&gobrake.NotifierOptions{
|
||||
ProjectId: int64(conf.AirbrakeProjecId),
|
||||
ProjectId: int64(conf.AirbrakeProjecID),
|
||||
ProjectKey: conf.AirbrakeProjecKey,
|
||||
Environment: conf.AirbrakeEnv,
|
||||
})
|
||||
@ -61,7 +61,9 @@ func initErrorsReporting() {
|
||||
}
|
||||
|
||||
func closeErrorsReporting() {
|
||||
if airbrake != nil {
|
||||
airbrake.Close()
|
||||
}
|
||||
}
|
||||
|
||||
func reportError(err error, req *http.Request) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user