From c116504bc80b200c031b6de3c76439f034244899 Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Sat, 24 Jan 2026 23:51:12 -0800 Subject: [PATCH] fix: fix filerAddress type mismatch in Filer command --- weed/command/filer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weed/command/filer.go b/weed/command/filer.go index 05ccbf9a8..81ddd03e5 100644 --- a/weed/command/filer.go +++ b/weed/command/filer.go @@ -393,7 +393,7 @@ func (fo *FilerOptions) startFiler() { filer_pb.RegisterSeaweedFilerServer(grpcS, fs) // IAM Service - iamStorage, err := iam.NewFilerIamStorage(nil, func() string { return filerAddress }, security.LoadClientTLS(util.GetViper(), "grpc.filer")) + iamStorage, err := iam.NewFilerIamStorage(nil, func() string { return filerAddress.String() }, security.LoadClientTLS(util.GetViper(), "grpc.filer")) if err != nil { glog.Errorf("Failed to initialize IAM storage: %v", err) } else {