FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects
Commit aecac82f authored by Robin Goodall's avatar Robin Goodall :speech_balloon:
Browse files

Fix pagesize for licensing API listing

parent be3735d0
No related branches found
No related tags found
1 merge request!38Fix pagesize for licensing API listing
Pipeline #322010 passed with warnings
...@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. ...@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [0.14.1] - 2023-04-27
### Changed
- Cap license list page size to 200 following Google API bug when using default 500
## [0.14.0] - 2023-03-22 ## [0.14.0] - 2023-03-22
### Added ### Added
......
...@@ -342,6 +342,7 @@ class GAPIRetriever(ConfigurationStateConsumer): ...@@ -342,6 +342,7 @@ class GAPIRetriever(ConfigurationStateConsumer):
fields="nextPageToken,items(" + ",".join(fields) + ")", fields="nextPageToken,items(" + ",".join(fields) + ")",
retries=self.sync_config.http_retries, retries=self.sync_config.http_retries,
retry_delay=self.sync_config.http_retry_delay, retry_delay=self.sync_config.http_retry_delay,
page_size=200,
) )
def retrieve_groups(self): def retrieve_groups(self):
......
...@@ -16,7 +16,7 @@ def load_requirements(): ...@@ -16,7 +16,7 @@ def load_requirements():
setup( setup(
name="gsuitesync", name="gsuitesync",
version="0.14.0", version="0.14.1",
packages=find_packages(), packages=find_packages(),
install_requires=load_requirements(), install_requires=load_requirements(),
entry_points={ entry_points={
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment