Adding back prod check.
This commit is contained in:
parent
f65a6171d8
commit
3dad683cb9
|
@ -46,18 +46,18 @@ app.use(auth.passport.session())
|
||||||
app.use(api.routes())
|
app.use(api.routes())
|
||||||
|
|
||||||
// sentry
|
// sentry
|
||||||
//if (env.isProd()) {
|
if (env.isProd()) {
|
||||||
Sentry.init()
|
Sentry.init()
|
||||||
|
|
||||||
app.on("error", (err, ctx) => {
|
app.on("error", (err, ctx) => {
|
||||||
Sentry.withScope(function (scope: Scope) {
|
Sentry.withScope(function (scope: Scope) {
|
||||||
scope.addEventProcessor(function (event: Event) {
|
scope.addEventProcessor(function (event: Event) {
|
||||||
return Sentry.Handlers.parseRequest(event, ctx.request)
|
return Sentry.Handlers.parseRequest(event, ctx.request)
|
||||||
})
|
})
|
||||||
Sentry.captureException(err)
|
Sentry.captureException(err)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
//}
|
}
|
||||||
|
|
||||||
const server = http.createServer(app.callback())
|
const server = http.createServer(app.callback())
|
||||||
destroyable(server)
|
destroyable(server)
|
||||||
|
|
Loading…
Reference in New Issue