We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 416d0b1 + ecbbe05 commit f180f83Copy full SHA for f180f83
storage/ndb/tools/listTables.cpp
@@ -319,7 +319,9 @@ int main(int argc, char** argv){
319
320
ndb_cluster_connection->set_name("ndb_show_tables");
321
if (ndb_cluster_connection->connect(12,5,1))
322
- fatal("Unable to connect to management server.");
+ fatal("Unable to connect to management server.\n - Error: '%d: %s'",
323
+ ndb_cluster_connection->get_latest_error(),
324
+ ndb_cluster_connection->get_latest_error_msg());
325
if (ndb_cluster_connection->wait_until_ready(30,0) < 0)
326
fatal("Cluster nodes not ready in 30 seconds.");
327
0 commit comments