@@ -386,6 +386,7 @@ def init(
386386 gcs_requester_pays_configuration = gcs_requester_pays_configuration ,
387387 regions = regions ,
388388 gcs_bucket_allow_list = gcs_bucket_allow_list ,
389+ branching_factor = branching_factor ,
389390 )
390391 )
391392 if backend == 'spark' :
@@ -522,6 +523,7 @@ def init_spark(
522523 gcs_requester_pays_configuration = nullable (oneof (str , sized_tupleof (str , sequenceof (str )))),
523524 regions = nullable (sequenceof (str )),
524525 gcs_bucket_allow_list = nullable (sequenceof (str )),
526+ braching_factor = nullable (int ),
525527)
526528async def init_batch (
527529 * ,
@@ -545,6 +547,7 @@ async def init_batch(
545547 gcs_requester_pays_configuration : Optional [GCSRequesterPaysConfiguration ] = None ,
546548 regions : Optional [List [str ]] = None ,
547549 gcs_bucket_allow_list : Optional [List [str ]] = None ,
550+ branching_factor : Optional [int ] = None ,
548551):
549552 from hail .backend .service_backend import ServiceBackend
550553
@@ -563,6 +566,7 @@ async def init_batch(
563566 regions = regions ,
564567 gcs_requester_pays_configuration = gcs_requester_pays_configuration ,
565568 gcs_bucket_allow_list = gcs_bucket_allow_list ,
569+ branching_factor = branching_factor ,
566570 )
567571
568572 log = _get_log (log )
0 commit comments