Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bindings/cpp/test/test_utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
namespace fluss_test {

static constexpr const char* kFlussImage = "apache/fluss";
static constexpr const char* kFlussVersion = "0.8.0-incubating";
static constexpr const char* kFlussVersion = "0.9.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";
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/test/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
import fluss

FLUSS_IMAGE = "apache/fluss"
FLUSS_VERSION = "0.8.0-incubating"
FLUSS_VERSION = "0.9.0-incubating"
BOOTSTRAP_SERVERS_ENV = os.environ.get("FLUSS_BOOTSTRAP_SERVERS")


Expand Down
2 changes: 1 addition & 1 deletion crates/fluss/tests/integration/fluss_cluster.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ use testcontainers::core::ContainerPort;
use testcontainers::runners::AsyncRunner;
use testcontainers::{ContainerAsync, GenericImage, ImageExt};

const FLUSS_VERSION: &str = "0.8.0-incubating";
const FLUSS_VERSION: &str = "0.9.0-incubating";
const FLUSS_IMAGE: &str = "apache/fluss";

pub struct FlussTestingClusterBuilder {
Expand Down
Loading