async with meraki.aio.AsyncDashboardAPI( api_key='xyz', base_url='https://api.meraki.com/api/v1', output_log=False, print_console=True, suppress_logging=True, wait_on_rate_limit=True, maximum_retries=100, maximum_concurrent_requests=5 ) as aiomeraki: org_vlan_tasks = [asyncio.create_task(process_organization_vlans(aiomeraki,org,vlan_std_keys,severities)) for org in organizations] await asyncio.gather(*org_vlan_tasks) for network in organization['networks']: tasks.append(asyncio.create_task((process_organization_vlans(aiomeraki,network,vlan_std_keys,organization,severities)))) The smallest function in the chain, uses the initialized meraki.aio dashboard to get vlans. I get multiple 429 errors, and i don't understand why, because i used maximum_concurent_requests at half the threshold, and I am the only one doing api calls on this organization
... View more