- RedisLock backend requires one argument: "redis_url". Example: redis://127.0.0.1:6379/0 - Add the setting LOCK_MANAGER_BACKEND_ARGUMENTS. Signed-off-by: Roberto Rosario <roberto.rosario@mayan-edms.com>
30 lines
977 B
Python
30 lines
977 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from mayan.apps.smart_settings.classes import Namespace
|
|
|
|
from .literals import DEFAULT_BACKEND, DEFAULT_LOCK_TIMEOUT_VALUE
|
|
|
|
namespace = Namespace(label=_('Lock manager'), name='lock_manager')
|
|
|
|
setting_backend = namespace.add_setting(
|
|
default=DEFAULT_BACKEND,
|
|
global_name='LOCK_MANAGER_BACKEND', help_text=_(
|
|
'Path to the class to use when to request and release '
|
|
'resource locks.'
|
|
)
|
|
)
|
|
setting_backend_arguments = namespace.add_setting(
|
|
global_name='LOCK_MANAGER_BACKEND_ARGUMENTS',
|
|
default={}, help_text=_('Arguments to pass to the LOCK_MANAGER_BACKEND.')
|
|
)
|
|
|
|
setting_default_lock_timeout = namespace.add_setting(
|
|
default=DEFAULT_LOCK_TIMEOUT_VALUE,
|
|
global_name='LOCK_MANAGER_DEFAULT_LOCK_TIMEOUT', help_text=_(
|
|
'Default amount of time in seconds after which a resource '
|
|
'lock will be automatically released.'
|
|
)
|
|
)
|