Skip to content

Commit db6f54e

Browse files
committed
fix(docs): correct error_mode default in start_import docstring
The docstring said the backend default when error_mode is omitted is "abort"; the actual default is "continue", consistent with the narrative how-to guide and TypeScript SDK behavior. Closes HR-0007.
1 parent ee90dfe commit db6f54e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pinecone/index/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1601,7 +1601,7 @@ def start_import(
16011601
``"s3://my-bucket/vectors/"`` or ``"gs://my-bucket/vectors/"``).
16021602
error_mode (str | None): How to handle errors during import. Must be
16031603
``"continue"`` or ``"abort"`` when supplied. Case-insensitive.
1604-
Optional; when omitted the backend default (abort) applies.
1604+
Optional; when omitted the backend default (``"continue"``) applies.
16051605
integration_id (str | None): Optional integration ID for the import.
16061606
16071607
Returns:

0 commit comments

Comments
 (0)