From d5f21fd8ba6ee20c2504455093a9ceeaa178b826 Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Mon, 8 Dec 2025 23:21:02 -0800 Subject: fix: add missing backslash for volume extraArgs in helm chart (#7676) Fixes #7467 The -mserver argument line in volume-statefulset.yaml was missing a trailing backslash, which prevented extraArgs from being passed to the weed volume process. Also: - Extracted master server list generation logic into shared helper templates in _helpers.tpl for better maintainability - Updated all occurrences of deprecated -mserver flag to -master across docker-compose files, test files, and documentation --- test/fuse_integration/framework.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/fuse_integration/framework.go') diff --git a/test/fuse_integration/framework.go b/test/fuse_integration/framework.go index 000dddbfe..2fe7ef343 100644 --- a/test/fuse_integration/framework.go +++ b/test/fuse_integration/framework.go @@ -194,7 +194,7 @@ func (f *FuseTestFramework) startMaster(config *TestConfig) error { func (f *FuseTestFramework) startVolumeServers(config *TestConfig) error { args := []string{ "volume", - "-mserver=" + f.masterAddr, + "-master=" + f.masterAddr, "-ip=127.0.0.1", "-port=18080", "-dir=" + filepath.Join(f.dataDir, "volume"), -- cgit v1.2.3