Skip to content

Commit 9d09fae

Browse files
committed
updates documentation
1 parent 799a6c0 commit 9d09fae

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

docs/settings.rst

+7-8
Original file line numberDiff line numberDiff line change
@@ -92,15 +92,14 @@ Stop at the first conflict and raise :ref:`recordmodifiederror`. Note that if yo
9292
.. seealso:: :ref:`list_editable`, :ref:`middleware`
9393

9494

95-
.. setting:: CONCURRECY_SANITY_CHECK
9695

97-
SANITY_CHECK
98-
------------
99-
.. versionchanged:: 0.7
96+
.. setting:: CONCURRECY_MANUAL_TRIGGERS
10097

101-
Default: ``False``
102-
103-
Deprecated. Starting from 0.7 has no effect and will be removed in 0.8
98+
MANUAL_TRIGGERS
99+
---------------
100+
.. versionadded:: 1.0
104101

102+
Default: ``False``
105103

106-
.. setting:: USE_SELECT_FOR_UPDATE
104+
If false do not automatically create triggers, you can create them using :ref:`triggers`
105+
management command or manually using your DB client.

src/concurrency/config.py

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ class AppSettings(object):
4646
"""
4747
defaults = {
4848
'ENABLED': True,
49-
'SANITY_CHECK': False,
5049
'MANUAL_TRIGGERS': False,
5150
'FIELD_SIGNER': 'concurrency.forms.VersionFieldSigner',
5251
'POLICY': CONCURRENCY_LIST_EDITABLE_POLICY_SILENT,

0 commit comments

Comments
 (0)