fresh-borzoni commented on code in PR #375:
URL: https://github.com/apache/fluss-rust/pull/375#discussion_r2867414816
##########
bindings/cpp/test/test_utils.h:
##########
@@ -49,23 +49,46 @@
namespace fluss_test {
-static constexpr const char* kFlussVersion = "0.7.0";
+static constexpr const char* kFlussImage = "apache/fluss";
+static constexpr const char* kFlussVersion = "0.8.0-incubating";
static constexpr const char* kNetworkName = "fluss-cpp-test-network";
static constexpr const char* kZookeeperName = "zookeeper-cpp-test";
static constexpr const char* kCoordinatorName = "coordinator-server-cpp-test";
static constexpr const char* kTabletServerName = "tablet-server-cpp-test";
static constexpr int kCoordinatorPort = 9123;
static constexpr int kTabletServerPort = 9124;
+static constexpr int kPlainClientPort = 9223;
+static constexpr int kPlainClientTabletPort = 9224;
/// Execute a shell command and return its exit code.
-inline int RunCommand(const std::string& cmd) {
- return system(cmd.c_str());
+inline int RunCommand(const std::string& cmd) { return system(cmd.c_str()); }
Review Comment:
hmm, we would need to pass docker and cluster operations through CXX
boundary(rust uses test-containers and Cpp plain docker), managable, but
annoying.
I'll file the issue, sure
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]