Skip to content

Commit 1329ff8

Browse files
[QQC-1895] Reduce threshold for async batch creation in SDK (#1073)
1 parent 4cf3e55 commit 1329ff8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

labelbox/schema/project.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -755,7 +755,7 @@ def create_batch(
755755
consensus_settings = ConsensusSettings(**consensus_settings).dict(
756756
by_alias=True)
757757

758-
if len(dr_ids) >= 10_000:
758+
if len(dr_ids) >= 1_000:
759759
return self._create_batch_async(name, dr_ids, global_keys, priority,
760760
consensus_settings)
761761
else:

0 commit comments

Comments
 (0)