We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34e2869 commit f13f0e8Copy full SHA for f13f0e8
1 file changed
python/lib/sift_py/ingestion/_internal/ingest.py
@@ -190,8 +190,10 @@ def attach_run(
190
Include `force_new=True` to force the creation of a new run, which will allow creation of a new run using an existing name.
191
"""
192
if self._ingestion_thread.is_alive():
193
- raise IngestionValidationError("Cannot attach run while ingestion thread is running. Invoke before ingesting.")
194
-
+ raise IngestionValidationError(
+ "Cannot attach run while ingestion thread is running. Invoke before ingesting."
195
+ )
196
+
197
if not force_new:
198
run_id = get_run_id_by_name(channel, run_name)
199
0 commit comments