From 0bc7f84631d60a3c25f2971f9feb84966ca84a9d Mon Sep 17 00:00:00 2001 From: rahulguptajss Date: Wed, 10 Dec 2025 11:30:38 +0530 Subject: [PATCH] fix: support different ontap port Zapi/ZapiPerf collector --- pkg/api/ontapi/zapi/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/api/ontapi/zapi/client.go b/pkg/api/ontapi/zapi/client.go index 3b82cd654..51eba7f78 100644 --- a/pkg/api/ontapi/zapi/client.go +++ b/pkg/api/ontapi/zapi/client.go @@ -82,7 +82,7 @@ func New(poller *conf.Poller, c *auth.Credentials) (*Client, error) { if poller.IsKfs { url = "https://" + addr + ":8443/servlets/netapp.servlets.admin.XMLrequest_filer" } else { - url = "https://" + addr + ":443/servlets/netapp.servlets.admin.XMLrequest_filer" + url = "https://" + addr + "/servlets/netapp.servlets.admin.XMLrequest_filer" } if poller.LogSet != nil {