From 675ff3331925715362dc533cfa27b573028b1370 Mon Sep 17 00:00:00 2001 From: haruska <2803+haruska@users.noreply.github.com> Date: Fri, 5 Apr 2024 09:22:18 -0500 Subject: [PATCH] remove confusing implementation detail from error return comment --- pinecone/management_client.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/pinecone/management_client.go b/pinecone/management_client.go index 4cd82fa..be11afa 100644 --- a/pinecone/management_client.go +++ b/pinecone/management_client.go @@ -127,9 +127,6 @@ func NewManagementClient(in NewManagementClientParams) (*ManagementClient, error // - 500 Internal Server Error: Indicates a server-side error. It might be temporary. // - 4XX: Covers other client-side errors not explicitly handled by other conditions. // -// In case of a successful response but with unexpected format or empty data, -// it returns an error indicating the unexpected response format. -// // Context (ctx) is used to control the request's lifetime. It allows for the request // to be canceled or to timeout according to the context's deadline. //