Adds configuration variable to the inotify debounce timing

This commit is contained in:
Trenton Holmes 2022-05-15 11:48:12 -07:00
parent c7412deb77
commit f07cfd4f51
No known key found for this signature in database
GPG key ID: 4815A6E23A56B8D1
4 changed files with 40 additions and 4 deletions

View file

@ -98,6 +98,9 @@ class ConsumerMixin:
print("file completed.")
@override_settings(
CONSUMER_INOTIFY_DELAY=0.01,
)
class TestConsumer(DirectoriesMixin, ConsumerMixin, TransactionTestCase):
def test_consume_file(self):
self.t_start()
@ -286,7 +289,7 @@ class TestConsumerPolling(TestConsumer):
pass
@override_settings(CONSUMER_RECURSIVE=True)
@override_settings(CONSUMER_INOTIFY_DELAY=0.01, CONSUMER_RECURSIVE=True)
class TestConsumerRecursive(TestConsumer):
# just do all the tests with recursive
pass