From 087002c832efb15a39a730cbb2fb70dfccaa940b Mon Sep 17 00:00:00 2001 From: abhishek9686 Date: Tue, 10 Dec 2024 11:55:24 +0400 Subject: [PATCH] use any service type for migration --- logic/acls.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/logic/acls.go b/logic/acls.go index 8bbafd806..d623e5c5a 100644 --- a/logic/acls.go +++ b/logic/acls.go @@ -23,7 +23,7 @@ func MigrateAclPolicies() { for _, acl := range acls { if acl.Proto.String() == "" { acl.Proto = models.ALL - acl.ServiceType = models.Custom + acl.ServiceType = models.Any acl.Port = []string{} UpsertAcl(acl) }