diff --git a/sentry/logutils.py b/sentry/logutils.py index 3a3155e0f..e268670e0 100644 --- a/sentry/logutils.py +++ b/sentry/logutils.py @@ -101,6 +101,9 @@ class SanitizeOdooCookiesProcessor(SanitizePasswordsProcessor): Allows to sanitize sensitive Odoo cookies, namely the "session_id" cookie. ''' - FIELDS = frozenset([ + # `FIELDS` was renamed to `KEYS` in raven 6.4.0. + # Keep `FIELDS` for backwards compatibility. + # See also issue #1096 on OCA/server-tools. + KEYS = FIELDS = frozenset([ 'session_id', ])