diff --git a/maxscale-system-test/testconnections.cpp b/maxscale-system-test/testconnections.cpp index a482918bf..8530274ed 100644 --- a/maxscale-system-test/testconnections.cpp +++ b/maxscale-system-test/testconnections.cpp @@ -2122,6 +2122,16 @@ int TestConnections::call_mdbci(const char * options) { maxscales->read_basic_env(); } + int ec; + char * ver = maxscales->ssh_node_output(0, "maxscale --version-full", false, &ec); + if (ec) + { + tprintf("Error retrival of Maxscale version info"); + } + else + { + tprintf("Maxscale_full_version_start:\n%s\nMaxscale_full_version_end\n", ver); + } return 0; }