POST data is not being propagated to the UI

Hello,

I’m having an issue with the python sdk on a server that I’m running. On POST requests the body is being suppressed/not being sent to the sentry UI, and I can’t figure out why.

I’m declaring the client like so:

    ignore_exceptions = ['HTTPNotFound']
    sentry_client = Client(
        SENTRY_DSN,
        ignore_exceptions=ignore_exceptions
    )

As far as I can tell, to NOT include post data you need to also pass something akin to

processors = (
    'raven.processors.RemovePostDataProcessor',
)

which I am not passing. Is there some sort of default I need to override? Am I missing something obvious?

Thanks so much for any help, and let me know if I can clarify/improve my question at all.

Figured this out, resolution here: https://stackoverflow.com/questions/50243845/sentry-post-data-is-not-being-propagated-to-the-ui/50283252#50283252