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 211cc992ef5 IGNITE-27603 Debug
211cc992ef5 is described below
commit 211cc992ef55951124ace0f0aad01efdbf894e63
Author: Igor Sapego <[email protected]>
AuthorDate: Wed Mar 18 15:06:14 2026 +0100
IGNITE-27603 Debug
---
modules/platforms/cpp/ignite/client/ignite_client.cpp | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/modules/platforms/cpp/ignite/client/ignite_client.cpp
b/modules/platforms/cpp/ignite/client/ignite_client.cpp
index b7861cec4e7..f90759940c4 100644
--- a/modules/platforms/cpp/ignite/client/ignite_client.cpp
+++ b/modules/platforms/cpp/ignite/client/ignite_client.cpp
@@ -49,6 +49,11 @@ ignite_client
ignite_client::start(ignite_client_configuration configuration, st
throw ignite_error(error::code::CONNECTION, "Can not establish
connection within timeout");
}
+ std::cout << "Status: " << int(status) << std::endl;
+ std::cout << "std::future_status::ready: " <<
int(std::future_status::ready) << std::endl;
+ std::cout << "std::future_status::deferred: " <<
int(std::future_status::deferred) << std::endl;
+ std::cout << "std::future_status::timeout: " <<
int(std::future_status::timeout) << std::endl;
+
assert(status == std::future_status::ready);
auto res = future.get();
if (res.has_error()) {