FAQ
| This is a
LIVE
service |
Changelog
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
Directory Synchronisation Tool
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Information Services
DevOps
Google WorkSpace (aka G-Suite)
Directory Synchronisation Tool
Commits
aecac82f
Commit
aecac82f
authored
1 year ago
by
Robin Goodall
Browse files
Options
Downloads
Patches
Plain Diff
Fix pagesize for licensing API listing
parent
be3735d0
No related branches found
No related tags found
1 merge request
!38
Fix pagesize for licensing API listing
Pipeline
#322010
passed with warnings
1 year ago
Stage: build
Stage: test
Stage: dast
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGELOG.md
+6
-0
6 additions, 0 deletions
CHANGELOG.md
gsuitesync/sync/gapi.py
+1
-0
1 addition, 0 deletions
gsuitesync/sync/gapi.py
setup.py
+1
-1
1 addition, 1 deletion
setup.py
with
8 additions
and
1 deletion
CHANGELOG.md
+
6
−
0
View file @
aecac82f
...
...
@@ -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/
)
,
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
### Added
...
...
This diff is collapsed.
Click to expand it.
gsuitesync/sync/gapi.py
+
1
−
0
View file @
aecac82f
...
...
@@ -342,6 +342,7 @@ class GAPIRetriever(ConfigurationStateConsumer):
fields
=
"
nextPageToken,items(
"
+
"
,
"
.
join
(
fields
)
+
"
)
"
,
retries
=
self
.
sync_config
.
http_retries
,
retry_delay
=
self
.
sync_config
.
http_retry_delay
,
page_size
=
200
,
)
def
retrieve_groups
(
self
):
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
1
−
1
View file @
aecac82f
...
...
@@ -16,7 +16,7 @@ def load_requirements():
setup
(
name
=
"
gsuitesync
"
,
version
=
"
0.14.
0
"
,
version
=
"
0.14.
1
"
,
packages
=
find_packages
(),
install_requires
=
load_requirements
(),
entry_points
=
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment