mirror of
https://github.com/django/daphne.git
synced 2025-06-06 06:03:24 +03:00
Fixed #477: Only re-save session if it's not empty
This commit is contained in:
parent
5c74ee587e
commit
db8a4570c3
|
@ -70,7 +70,7 @@ def channel_session(func):
|
|||
return func(message, *args, **kwargs)
|
||||
finally:
|
||||
# Persist session if needed
|
||||
if session.modified:
|
||||
if session.modified and not session.is_empty():
|
||||
session.save()
|
||||
return inner
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user