raven-python icon indicating copy to clipboard operation
raven-python copied to clipboard

Sentry not send errors when add tags or envs

Open nicobytes opened this issue 7 years ago • 0 comments

Hello!

I use python/raven 6.9.0 but recently the errors not are send in sentry.

Like this work:

sentry = Sentry(
    app,
    dsn=config.SENTRY_DSN,
)
sentry.captureMessage('hello, world! 2')

screen shot 2018-08-27 at 6 39 41 pm

But when add tags or envs not work

sentry = Sentry(
    app,
    dsn=config.SENTRY_DSN,
    environment=config.ENV,
    tags={'project': 'backend'}
)
sentry.captureMessage('hello, world! 3')

nicobytes avatar Aug 27 '18 22:08 nicobytes