mirror of
https://github.com/Hopiu/django-cachalot.git
synced 2026-03-16 21:30:23 +00:00
Remove deprecated signal argument (#165)
* Remove signal's providing_args deprecated argument * Update docs for signal In PR #165 Co-authored-by: Andrew Chen Wang <60190294+Andrew-Chen-Wang@users.noreply.github.com>
This commit is contained in:
parent
72be2c07b3
commit
d632a79015
1 changed files with 3 additions and 2 deletions
|
|
@ -1,4 +1,5 @@
|
|||
from django.dispatch import Signal
|
||||
|
||||
|
||||
post_invalidation = Signal(providing_args=['db_alias'])
|
||||
# sender: name of table invalidated
|
||||
# db_alias: name of database that was effected
|
||||
post_invalidation = Signal()
|
||||
|
|
|
|||
Loading…
Reference in a new issue