You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Our Sentry is getting spammed by the same repeating error:
Stored anonymous user id <SimpleLazyObject: <User: insider>> for user None in course u'rrrssstttuuuvvvwwwxxxyyyzzz' doesn't match computed id u'aaabbbcccdddeeefffggghhhiii'
We had to silence it fast in order to avoid bursting our events quota on Sentry, so we commented out the piece of code that logs the error: see PR openfun/edx-platform#56.
However, eventhough these errors do not seem to affect our users, we should take the time to understand it and fix it at its root.
The text was updated successfully, but these errors were encountered:
The anonymous id changes every time you modify your Django SECRET_KEY setting.
I think when the Django secret key changes, existing user anonymous ids should not change... so the anonymous_id_for_user method should return the existing anonymous id and not the digest computed with the current Django secret key.
If edX wanted the anonymous id to change with the secret key, they shouldn't have persisted it to the database... What they do is not coherent. Raising a warning does not solve it and adds to the confusion.
Our Sentry is getting spammed by the same repeating error:
We had to silence it fast in order to avoid bursting our events quota on Sentry, so we commented out the piece of code that logs the error: see PR openfun/edx-platform#56.
However, eventhough these errors do not seem to affect our users, we should take the time to understand it and fix it at its root.
The text was updated successfully, but these errors were encountered: