From 8682b3cd9f3e1b1f83e4d44ff7003cb5a93f9876 Mon Sep 17 00:00:00 2001 From: walnuts1018 Date: Sat, 10 Jan 2026 18:50:07 +0900 Subject: [PATCH] fix: use 9142 port in tls connection Signed-off-by: walnuts1018 --- weed/filer/cassandra2/cassandra_store.go | 1 + 1 file changed, 1 insertion(+) diff --git a/weed/filer/cassandra2/cassandra_store.go b/weed/filer/cassandra2/cassandra_store.go index 2260d32a1..1d1d10366 100644 --- a/weed/filer/cassandra2/cassandra_store.go +++ b/weed/filer/cassandra2/cassandra_store.go @@ -60,6 +60,7 @@ func (store *Cassandra2Store) initialize(keyspace string, hosts []string, userna KeyPath: tlsClientKeyFile, EnableHostVerification: true, } + store.cluster.Port = 9142 } store.cluster.Keyspace = keyspace store.cluster.Timeout = time.Duration(timeout) * time.Millisecond