Skip to content

Commit

Permalink
print state
Browse files Browse the repository at this point in the history
  • Loading branch information
austin-denoble committed Aug 21, 2024
1 parent 39fb132 commit a7b2002
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pinecone/client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1215,7 +1215,8 @@ func (ts *IntegrationTests) deleteIndex(name string) error {

index, err := ts.client.DescribeIndex(context.Background(), name)
require.NoError(ts.T(), err)
fmt.Printf("<<< TRYING TO DELETE INDEX >>> : %+v\n", index)
fmt.Printf("<<< TRYING TO DELETE INDEX >>> : %+v", index)
fmt.Printf("<<< STATE >>> : %+v\n", index.Status)

err = ts.client.DeleteIndex(context.Background(), name)
require.NoError(ts.T(), err)
Expand Down

0 comments on commit a7b2002

Please sign in to comment.