Skip to content

Commit

Permalink
Fix typo in existing index log message (#292)
Browse files Browse the repository at this point in the history
--skip-populate -> --skip_populate
  • Loading branch information
daverigby authored Feb 19, 2025
1 parent aa4f7d8 commit 009ab08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vsb/databases/pinecone/pinecone.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def initialize_population(self):
msg = (
f"PineconeDB: Index '{self.index_name}' already exists - cowardly "
f"refusing to overwrite existing data. Specify --overwrite to "
f"delete it, or specify --skip-populate to skip population phase."
f"delete it, or specify --skip_populate to skip population phase."
)
logger.critical(msg)
raise StopUser()
Expand Down

0 comments on commit 009ab08

Please sign in to comment.