Skip to content

Commit f153ca3

Browse files
authored
Bugfix/lower default page size (#100)
* lower page size to 500 to fix alert-rules * changelog and bump version * bump to 0.7.2
1 parent ed7e367 commit f153ca3

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
The intended audience of this file is for py42 consumers -- as such, changes that don't affect
99
how a consumer would use the library (e.g. adding unit tests, updating documentation, etc) are not captured here.
1010

11+
## 0.7.2 - 2020-06-11
12+
13+
### Fixed
14+
15+
- Fixed bug that caused `alert-rules list` to error due to page size restrictions on backing service.
16+
1117
## 0.7.1 - 2020-06-10
1218

1319
### Fixed

src/code42cli/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.7.1"
1+
__version__ = "0.7.2"

src/code42cli/sdk_client.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
import py42.sdk
22
import py42.settings.debug as debug
3+
import py42.settings
34

45
from code42cli.logger import get_main_cli_logger
56

7+
py42.settings.items_per_page = 500
68

79
def create_sdk(profile, is_debug_mode):
810
if is_debug_mode:

0 commit comments

Comments
 (0)