File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
backend/onyx/connectors/google_drive Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -378,7 +378,7 @@ def record_drive_processing(drive_id: str) -> None:
378
378
)
379
379
logger .info (
380
380
f"Drive id status: { drive_id_status } , user email: { thread_id } ,"
381
- f"processed drive ids: { completion .processed_drive_ids } "
381
+ f"processed drive ids: { len ( completion .processed_drive_ids ) } "
382
382
)
383
383
# wake up other threads waiting for work
384
384
cv .notify_all ()
@@ -1023,7 +1023,7 @@ def _yield_batch(
1023
1023
list [Document | ConnectorFailure | None ],
1024
1024
run_functions_tuples_in_parallel (func_with_args , max_workers = 8 ),
1025
1025
)
1026
- logger .info (f"Results: { results } " )
1026
+ logger .info (f"Results: { len ( results ) } " )
1027
1027
docs_and_failures = [result for result in results if result is not None ]
1028
1028
1029
1029
if docs_and_failures :
You can’t perform that action at this time.
0 commit comments