Closed dwene closed 2 years ago
Probably best to ask over at sentry-kubernetes, @dwene. That's a community effort not supported by Sentry.
If you can repro with stock self-hosted
, then this is definitely the place to be. :)
I believe I figured it out, it was this line.
SENTRY_OPTIONS['mail.use-ssl'] = bool(strtobool(os.getenv("SENTRY_EMAIL_USE_SSL", )))
Since the default was null
/NoneType
that broke the config.
Glad you got it sorted @dwene, thanks for circling back and leaving a note for others in the future. :)
Version
21.8.0
Steps to Reproduce
I'm getting this very vague configuration error, without a stacktrace or anything, so I don't know to begin debugging this:
!! Configuration error: ConfigurationError("AttributeError: 'NoneType' object has no attribute 'lower'",)
I'm running using version 12.0.0 of the sentry helm chart found here:
https://github.com/sentry-kubernetes/charts/tree/12.0.0/sentry
Here's my configs:
Expected Result
There would be a stacktrace with the error, so I could at least go find what line it's on.
Actual Result
No stack trace, and there's over 200 references to
.lower
in the sentry codebase.