-
Notifications
You must be signed in to change notification settings - Fork 542
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Duplicated Activities. #153
Comments
+1 P.S. Using redis storage, RedisNotificationFeed |
I have made some code research and it seems that this code doesn't work right way. There is no such activity in the storage that presents in |
I've found that this problem caused by activity serialization issue: the same Activity may be serialized/deserialized/serialized again and serialized(1) will not be equals serialized(2). This simple test demonstates it:
Result:
As you can see above, there is the difference in serialized fields order. |
Oh, it references #53 |
Hello,
Im finding that after marking activities as read and seen using the mark_all method that a new activity with all the same attributes has been added to the aggregated feed. The only difference being that the new one has seen_at and read_at set to None.
As a result, it looks like the user always have a new notification.
Any idea under what circumstances this might occur ?
Cheers.
The text was updated successfully, but these errors were encountered: