Skip to content

Commit

Permalink
remove print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
austin-denoble committed Apr 30, 2024
1 parent 039fa24 commit 24516a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pinecone/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ func (c *Client) ListIndexes(ctx context.Context) ([]*Index, error) {
if res.StatusCode != http.StatusOK {
return nil, fmt.Errorf("unexpected status code: %d", res.StatusCode)
}
fmt.Printf("res.Body: %+v", res.Body)

var indexList control.IndexList
err = json.NewDecoder(res.Body).Decode(&indexList)
if err != nil {
Expand Down

0 comments on commit 24516a6

Please sign in to comment.