From 567d4bb80b079cf99f4a9624484708451471acbe Mon Sep 17 00:00:00 2001 From: coreGreenberet Date: Sat, 3 Jul 2021 21:39:54 +0200 Subject: [PATCH] asyncio: increase default concurrent request as the dashboard is now supporting more requests before it sends a 429 error, it should be safe to increase the maximum concurrent requests too --- meraki/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meraki/config.py b/meraki/config.py index f08c7fac..96a21f89 100644 --- a/meraki/config.py +++ b/meraki/config.py @@ -52,7 +52,7 @@ SIMULATE_API_CALLS = False # Number of concurrent API requests for asynchronous class -AIO_MAXIMUM_CONCURRENT_REQUESTS = 3 +AIO_MAXIMUM_CONCURRENT_REQUESTS = 8 # Optional partner identifier for API usage tracking; can also be set as an environment variable BE_GEO_ID BE_GEO_ID = ''