This is an automated email from the ASF dual-hosted git repository.
isapego pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git
The following commit(s) were added to refs/heads/main by this push:
new d3f1e9ba809 IGNITE-28504 Remove mentions of IGNITE-26358 in code
(#7967)
d3f1e9ba809 is described below
commit d3f1e9ba809e653d315b74a3c193bf15f5d32e06
Author: Igor Sapego <[email protected]>
AuthorDate: Mon Apr 13 13:25:38 2026 +0200
IGNITE-28504 Remove mentions of IGNITE-26358 in code (#7967)
---
modules/platforms/python/dbapi/tests/test_executemany.py | 3 +--
modules/platforms/python/dbapi/tests/test_fetch_table.py | 3 +--
modules/platforms/python/dbapi/tests/test_ssl.py | 2 --
3 files changed, 2 insertions(+), 6 deletions(-)
diff --git a/modules/platforms/python/dbapi/tests/test_executemany.py
b/modules/platforms/python/dbapi/tests/test_executemany.py
index fb73c861072..639e1690c41 100644
--- a/modules/platforms/python/dbapi/tests/test_executemany.py
+++ b/modules/platforms/python/dbapi/tests/test_executemany.py
@@ -15,8 +15,7 @@
import pytest
-# TODO: IGNITE-26358: Enable heartbeats in tests and add variant with
batch_size 300 and 2000 once heartbeats are implemented
[email protected]("batch_size", [1, 2, 10])
[email protected]("batch_size", [1, 2, 10, 300, 2000])
def test_executemany_success(table_name, cursor, drop_table_cleanup,
batch_size):
test_data = [(i, f'data_{i}') for i in range(batch_size)]
diff --git a/modules/platforms/python/dbapi/tests/test_fetch_table.py
b/modules/platforms/python/dbapi/tests/test_fetch_table.py
index 0535737481a..faddbfcb200 100644
--- a/modules/platforms/python/dbapi/tests/test_fetch_table.py
+++ b/modules/platforms/python/dbapi/tests/test_fetch_table.py
@@ -171,8 +171,7 @@ def test_cursor_iterable(table_name, cursor,
drop_table_cleanup):
TEST_PAGE_SIZE + 1,
TEST_PAGE_SIZE * 2,
TEST_PAGE_SIZE * 2 + 1,
- # TODO: IGNITE-26358 Implement Heartbeats
- # 8000,
+ 8000,
])
def test_fetch_table_several_pages(table_name, cursor, drop_table_cleanup,
rows_num):
create_and_populate_test_table(cursor, rows_num, table_name, 1000)
diff --git a/modules/platforms/python/dbapi/tests/test_ssl.py
b/modules/platforms/python/dbapi/tests/test_ssl.py
index aa0907e5fd5..0ff25a7829d 100644
--- a/modules/platforms/python/dbapi/tests/test_ssl.py
+++ b/modules/platforms/python/dbapi/tests/test_ssl.py
@@ -98,8 +98,6 @@ def test_connection_non_existing_cert():
assert err.match('(No such file or directory)|(no such file)')
-# TODO: IGNITE-26358: Enable heartbeats in tests re-enable this test
[email protected](reason="Flaky while there are no heartbeats")
@pytest.mark.parametrize("address", [server_addresses_ssl_basic,
server_addresses_ssl_client_auth])
def test_fetch_table_several_pages(table_name, address, drop_table_cleanup):
ssl_cfg = create_ssl_param(True, 'client.pem', 'client.pem', 'ca.pem')