Hello @John_on_API , I have some doubts regarding some options, not sure to understand correctly. I have a list of actions, that I then split in different batches per network. For example, per network : Create Vlan Change DHCP option Activate VPN I want : - each batch to run as asynchonous, because each action depends on the previous one, and if there is an error, it must be canceled. - batches to run all at the same time, to make it faster, as there are not dependant on each other. I use : batch_helper.BatchHelper(dashboard, orgID, batch_action_list,actions_per_new_batch=3,synchronous_new_batches=True) linear_new_batches is set to False by default, so batches should run at the same time ? confirmed_new_batches is set to True by default. It means that as soon as the batch is submitted, it is started, right ? If I set to False, it will instead wait for all my batches to be submitted to start them ? With the limit of 5, better to let it to True I guess. Is it right ? Thank you for your time
... View more