From 6e07c3fee8a549df8d5b8d4dd52c074eacc1b3ac Mon Sep 17 00:00:00 2001 From: congqixia Date: Thu, 25 Dec 2025 15:35:18 +0800 Subject: [PATCH] fix: remove EnableStorageV2 override in TestProxy (#46594) (#46596) Related to #46594 Remove the temporary config override that forced EnableStorageV2 to false in TestProxy. This override caused test failures with the new load logic, as segments could not be loaded with v1 format. This PR is a quick fix to make ut back to normal Signed-off-by: Congqi Xia --- internal/proxy/proxy_test.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/internal/proxy/proxy_test.go b/internal/proxy/proxy_test.go index fb2c142e0a..e704eb0b2e 100644 --- a/internal/proxy/proxy_test.go +++ b/internal/proxy/proxy_test.go @@ -962,8 +962,6 @@ func TestProxy(t *testing.T) { params.DataNodeGrpcServerCfg.IP = "localhost" params.StreamingNodeGrpcServerCfg.IP = "localhost" params.Save(params.MQCfg.Type.Key, "pulsar") - params.CommonCfg.EnableStorageV2.SwapTempValue("false") - defer params.CommonCfg.EnableStorageV2.SwapTempValue("") ctx, cancel := context.WithCancel(context.Background()) ctx = GetContext(ctx, "root:123456")