oslo.concurrency/oslo_concurrency/tests/unit
Romain Poupin a9ccf0a64d Add support for non-blocking locks
This adds support for a non-blocking behavior of the lock : the context-based
lock now raises an AcquireLockFailedException if the lock can't be acquired on
the first try.

At a higher layer, we just caught this exception inside the 'synchronized'
decorator to prevent calling the wrapped function. In which case, we then
trace this acquisition failure.

For now at least, disabling blocking is not supported when using fair locks
because the ReaderWriterLock.write_lock() provided by the fasteners module
doesn't implements this behavior.

Change-Id: I409da79007c9ba4fb8585da881e3d56998b0b98b
2021-06-24 09:45:48 +02:00
..
__init__.py Move out of the oslo namespace package 2014-11-14 17:17:25 -05:00
test_lockutils_eventlet.py Some test cleanup 2019-09-17 16:13:30 -05:00
test_lockutils.py Add support for non-blocking locks 2021-06-24 09:45:48 +02:00
test_processutils.py Add support for timeout to processutils.execute 2020-06-24 10:53:21 +02:00