From ac23e67f0785a9e3d39fd396df023d60d3ca4e5c Mon Sep 17 00:00:00 2001 From: aoiasd <45024769+aoiasd@users.noreply.github.com> Date: Tue, 26 Dec 2023 10:38:45 +0800 Subject: [PATCH] enhance: add default file path for access log (#29460) relate:https://github.com/milvus-io/milvus/issues/29459 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 78f2dfd2e3..31b007a6d6 100644 --- a/pkg/util/paramtable/component_param.go +++ b/pkg/util/paramtable/component_param.go @@ -1110,9 +1110,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)