From f5bba799633e614018af7685974a1d25022898e2 Mon Sep 17 00:00:00 2001 From: aoiasd <45024769+aoiasd@users.noreply.github.com> Date: Tue, 26 Dec 2023 17:52:47 +0800 Subject: [PATCH] enhance: [Cherry-Pick] add default local path for access log (#29461) relate: https://github.com/milvus-io/milvus/issues/29459 pr: https://github.com/milvus-io/milvus/pull/29460 Signed-off-by: aoiasd --- pkg/util/paramtable/component_param.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkg/util/paramtable/component_param.go b/pkg/util/paramtable/component_param.go index 05584ce831..bb785f36b0 100644 --- a/pkg/util/paramtable/component_param.go +++ b/pkg/util/paramtable/component_param.go @@ -1091,9 +1091,10 @@ please adjust in embedded Milvus: false`, p.AccessLog.MinioEnable.Init(base.mgr) p.AccessLog.LocalPath = ParamItem{ - Key: "proxy.accessLog.localPath", - Version: "2.2.0", - Export: true, + Key: "proxy.accessLog.localPath", + Version: "2.2.0", + DefaultValue: "/tmp/milvus_access", + Export: true, } p.AccessLog.LocalPath.Init(base.mgr)