This is an automated email from the ASF dual-hosted git repository. samt pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/cassandra-dtest.git
commit 0d2d8f514d4e2e1273710433c98938f9c0680d0d Author: Marcus Eriksson <[email protected]> AuthorDate: Tue May 30 14:02:57 2023 +0200 [CEP-21] Reduce timeout for commitlog_test --- commitlog_test.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/commitlog_test.py b/commitlog_test.py index df5100bd..106ae1d2 100644 --- a/commitlog_test.py +++ b/commitlog_test.py @@ -342,7 +342,9 @@ class TestCommitLog(Tester): Test the stop_commit commitlog failure policy """ self.prepare(configuration={ - 'commit_failure_policy': 'stop_commit' + 'commit_failure_policy': 'stop_commit', + 'write_request_timeout_in_ms': '2000', + 'cas_contention_timeout_in_ms': '1000' }) self.session1.execute(""" --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
