Skip to content

Commit 3316645

Browse files
committed
fix: Correct folder path handling in start_initialize_generic function
1 parent ef244e8 commit 3316645

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sources/gc-qa-rag-etl/etlapp/ved/initialize_generic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ def start_initialize_generic(context: EtlRagContext) -> None:
185185
file_index=file_index,
186186
group_index=group_index,
187187
doc=doc,
188-
folder_path_full=os.path.join(folder_path_full, product),
188+
folder_path_full=folder_path_full,
189189
)
190190
if points:
191191
client.insert_to_collection(collection_name, points)

0 commit comments

Comments
 (0)