Mitch Kelly
Mitch Kelly
Implemented in latest develop branch, ready for 1.7.0
Implemented in latest develop branch, ready for 1.7.0
Implemented in latest develop branch, ready for 1.7.0
[BUG]: Rate limited when trying to list users in mobile admin portal for a tenant with 30,000+ users
This is outside the scope of pyZscaler as this is the documented behaviour of the ZCC API as per [Understanding Rate Limiting](https://help.zscaler.com/client-connector/understanding-rate-limiting) in Zscaler's help docs. As identified, there's an...
Hi @mrpackethead I looked into this and you're right that they're different and yes it will work if we use a list of tuple pairs (pass it as a kwarg...
Hi @martinkiska sorry for the long time on this one, I am clearing the backlog up now and will take a look at this.
Hi @MrP1xel I'll add this into the next release (1.6.0) which should be some time this week. Thanks for raising!
Hi @IronBernd you make a fair point that searching for a user via email takes some time. I would say this isn't the fault of pyZscaler though, let me explain...
@martinkiska that's a great workaround and I didn't even think about the pagesize. @IronBernd would you mind comparing the time for a `zia.users.list_users()` with default parameters vs `zia.users.list_users(page_size=1000)`. I imagine...
Oh wow that's a **lot** of time blocked waiting for I/O. The only way we could get around this is to write an async method for any API calls that...