diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e748026..d6ab30fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 The intended audience of this file is for py42 consumers -- as such, changes that don't affect how a consumer would use the library (e.g. adding unit tests, updating documentation, etc) are not captured here. +## 1.14.4 - 2022-07-21 + +### Changed + +- Reduced the `page_size` in Device API calls from 500 to 100 to reduce possibility of timeouts when including backup usage in `code42 devices list`. + ## 1.14.3 - 2022-07-06 ### Fixed diff --git a/src/code42cli/__version__.py b/src/code42cli/__version__.py index f38fc51b..476b0706 100644 --- a/src/code42cli/__version__.py +++ b/src/code42cli/__version__.py @@ -1 +1 @@ -__version__ = "1.14.3" +__version__ = "1.14.4" diff --git a/src/code42cli/cmds/devices.py b/src/code42cli/cmds/devices.py index 12b2bbca..2e59dffb 100644 --- a/src/code42cli/cmds/devices.py +++ b/src/code42cli/cmds/devices.py @@ -432,7 +432,10 @@ def _get_device_dataframe( sdk, columns, active=None, org_uid=None, include_backup_usage=False ): devices_generator = sdk.devices.get_all( - active=active, include_backup_usage=include_backup_usage, org_uid=org_uid + active=active, + include_backup_usage=include_backup_usage, + org_uid=org_uid, + page_size=100, ) devices_list = [] if include_backup_usage: