django-async-messages icon indicating copy to clipboard operation
django-async-messages copied to clipboard

Send asynchronous messages to users

Results 5 django-async-messages issues
Sort by recently updated
recently updated
newest added
trafficstars

AsyncMiddleware error when loading

mw_instance = middleware(handler) TypeError: object() takes no parameters This is the complete trace: System check identified no issues (0 silenced). May 24, 2019 - 5:18:33 PM Django version 2.1.7, using...

Because the read-modify-write sequence is not atomic, it is possible to lose messages when multiple tasks try to send a message concurrently. ```python messages = cache.get(user_key) or [] messages.append((message, level))...