Skip to content

Commit d172f26

Browse files
authored
Merge pull request #3865 from VadimPlh/fix-transaction-admin-api-test
[transaction] Fix test_expired_transaction
2 parents b87b4cc + 022e463 commit d172f26

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

tests/rptest/tests/tx_admin_api_test.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ def test_simple_get_transaction(self):
8181
assert (tx['timeout_ms'] == 60000)
8282

8383
@cluster(num_nodes=3)
84-
@ignore # https://github.com/redpanda-data/redpanda/issues/3849
8584
def test_expired_transaction(self):
8685
'''
8786
Problem: rm_stm contains timer to run try_abort_old_txs.
@@ -104,7 +103,7 @@ def test_expired_transaction(self):
104103
producer1 = ck.Producer({
105104
'bootstrap.servers': self.redpanda.brokers(),
106105
'transactional.id': '0',
107-
'transaction.timeout.ms': '30000'
106+
'transaction.timeout.ms': '900000'
108107
})
109108
producer1.init_transactions()
110109
producer1.begin_transaction()

0 commit comments

Comments
 (0)