This is an automated email from the ASF dual-hosted git repository.
isapego pushed a commit to branch ignite-27304
in repository https://gitbox.apache.org/repos/asf/ignite-3.git
The following commit(s) were added to refs/heads/ignite-27304 by this push:
new d9df9ccbb12 IGNITE-27304: Fix ODBC tests main
d9df9ccbb12 is described below
commit d9df9ccbb1239f15efc8905cdf78d468fad5c06f
Author: Igor Sapego <[email protected]>
AuthorDate: Wed Mar 25 00:27:25 2026 +0100
IGNITE-27304: Fix ODBC tests main
---
modules/platforms/cpp/tests/odbc-test/main.cpp | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/modules/platforms/cpp/tests/odbc-test/main.cpp
b/modules/platforms/cpp/tests/odbc-test/main.cpp
index 9139c2e6119..d022a8932e1 100644
--- a/modules/platforms/cpp/tests/odbc-test/main.cpp
+++ b/modules/platforms/cpp/tests/odbc-test/main.cpp
@@ -78,7 +78,11 @@ int main(int argc, char **argv) {
if (!check_test_node_connectable(std::chrono::seconds(5))) {
runner.start();
- ensure_node_connectable(std::chrono::seconds(60));
+ auto timeout = std::chrono::minutes(5);
+ if (!check_test_node_connectable(timeout)) {
+ std::cerr << "Failed to start node within timeout: " <<
timeout.count() << "min" << std::endl;
+ return 3;
+ }
}
try {